In my game I have a time limit and when time is up it says "you lose click to play again" but when you play again there is no time limit, so how do I reset that time?
@Carter Reset scene does not reset the time, and neither will changing game.time. You cannot change or move the game.time attribute back. That is a constant attribute that adds when the game is running no matter what, and cant be manipulated back.
Make your own attribute called playtime when you start the game every 1 second change playtime to playtime+1 then whenever you want to reset the time change playtime to 0.
Comments
Make your own attribute called playtime when you start the game every 1 second change playtime to playtime+1 then whenever you want to reset the time change playtime to 0.
basically what carter said the second time