restart game and load a very new scene...

Hello. I have a simple question. I am making a game and I want if the player restart the game, the game will load a very new scene…right now when i restart the game…it will load the scene but the time is still like before it restart…anyone can help…

This, basically, is the problem with using Time.time for your timers. You should instead use either Time.timeSinceLevelLoad, or offset your timers by some value when they get started (and then subtract that value from Time.time to get the actual value).

You can use Application.LoadLevel to load a new scene.