How do I start game paused? please help
Press the pause button, then press the play button.
If you mean from script:
Application.isPaused = true;
Application.isPlaying = true;
Otherwise you could set Time.timeScale = 0; in some startup code to force the time steps to happen with no apparent increment.
yea from script thanks