I have been working on a project in which you need to click play to go onto the next level. How do I do this to make it go to the next background by clicking a sprite image?
Offline
On the sprite which acts like a button you add a script like this:
When Sprite1 is clicked
Broadcast nextlevel
And on the stage/sprite that contains the levels you add a script like this:
When I receive nextlevel
Next costume
There are other methods too but this is the easiest one
Offline
Okay Thank you very much, it worked
Offline