I've made my game so that when the space key is pressed several sprites pop up as well as a background. It's all in the correct order when the space key is pressed once. How can I edit the game so that once this space key is pressed, pressing it again will not work.
Offline
Just use a variable that will equal 1 once the space key is pressed and set it to 0 when flag is clicked. Then make the when key space pressed code execute only if the variable you created is equal to 0.
Offline