My Game Over Scene works fine in my Game Window when I press play. But when I load it from another level it switches back and forth from “normal” to “(not loaded)”. I have added the Scene to my Build Settings and tried loading it with the name as well as the index.
This is the code where I load the scene if it helps:
void FixedUpdate()
{
if (gamehealth == 0)
{
SceneManager.LoadScene(6);
}
}
Thank you for your help!