Game Over

Heyo!
How would I get the character, if he dies, to teleport to the beginning? is there some sort of collision I could make?
Thanks,
Brendan

You can teleport the player with an action to change an object position, this way the scene won’t restart, in other words dead enemies will still be dead, picked up coins won’t reappear, etc.
You can reload the scene too, this way the scene will be reset. To do it use the action to change the scene, with the current scene name as parameter (or the expression CurrentSceneName() ).

If the player must die when colliding with an enemy, just use the condition to check collision between player and enemy, and put one of the actions from above :slight_smile:

thank you so much! I’ll try reloading the scene. :smiley: