I need a block to unpause my game so I can make a pause menu
Pls help!
Please use the search tool to find solutions before making a new topic.
If you're going to make a pause menu, then you shouldn't use the pause block, instead, code it into your game loop, e.g. using wait until.
wdym?
Have a variable called "paused?" or something like that. Then in every game loop you have, insert a "wait until not paused" block at the end. Whenever the "paused?" variable is set to true, the game will stop. You can then make a pause menu for when this happens.
oh ok thx
so should i use "stop other scripts in sprite block" for when paused is true?
No, because that will stop the scripts not pause them
thx @cymplecy