Main Menu Glitch

So from my pause menu, when I click Main Menu, it takes me to the main menu… But it has a black screen, or if I don’t have my fade in function on it just shows the screen, but I can’t click anything… Does anyone know anything?

I found some answers… but they didn’t seem to work… Do I need an OnApplicationLoad Or something like that?

Thanks! (:

Sounds like you use Time.timesScale = 0f; to pause your game. This setting does not change when you load a new scene. You have to do it manually.

You could add the line Time.timesScale = 1f; above the line which loads the main menu or put it in the awake of your main menu script.