• Hey! Register here to create your account, engage with the community, and talk about what is new!

Why isn't the subtract block working?

SushiDude

New member
Joined
Jul 17, 2023
Messages
19
Reaction score
0
I'm making a start down timer but when I decrease the variable it doesn't go down?

1689645318588.png
 
Solution
Subtract takes the var and two arguments (var = x - y). You could put another copy of the var item in the second slot to do var = (var - y). Alternatively, you could leave the items as-is and use the Decrement block (var -= y).

Jeremaster

Owner
Owner
Joined
Aug 16, 2020
Messages
89
Reaction score
128
Subtract takes the var and two arguments (var = x - y). You could put another copy of the var item in the second slot to do var = (var - y). Alternatively, you could leave the items as-is and use the Decrement block (var -= y).
 
Solution
Top Bottom