I want to make a label show at the top of the screen that shows what level you are on, but my first level is a start screen, so it always shows what it’s supposed to be plus 1. Could anyone please help?
Here is my game:
https://flowlab.io/game/view/2310692
1 Like
levelNumber = levelNumber - 1
That doesn’t work. The expression block returns -1 instead of 1 which it should be.
That means that your code was working fine originally
So you did this
Once —> (Get)Level —> (A)Expression
Inside the expression should be “A-1”
1 Like