on (keyPress “1”) {
if (num1 = num2 + 1) {
num3 = “1”;
}
}
whats wrong with that?
when i do that there it changes the value of num2 and then on the second press it changes the value of num1 also
basically what i want is if 1 is pressed and
num1 - num2 = 1
then continue to next frame and change num3 to 1
edit: after watching closley i noticed when it changes the number it changes num 1 to num2 + 1 not doing the if statement… but it doesnt really add it either… if num2 is 7 then num1 becomes 71