everything else works perfectly except for the fact that the game wont switch to the next scene upon the timer reaching 1 and space being pressed.
I think you want to set “space out man” to 1 in the second event. Don’t forget events are linear, going from top to bottom. That means the second will always trigger before the last one, and therefore reset the timer before it checks it’s value.
1 Like
In your second event remove the Space key is released, just leave the timer check, and as a good practice use one word names like space_out or spaceOut or SpaceOut. and the same for Scenes like MainScene or mainScene, Level_0, Level_1…