When Player Respawns, Direction Light Dims/Disappears?

So, I made a script that made it so that when the player fell off of the platform, he’d respawn. The player does respawn however, my lighting seems to dim or disappear when I make the player respawn. To make the player respawn I use:

Application.LoadLevel(Application.loadedLevel);

Before & After

You seem to be using Unity 5. By default Unity has Skybox as the ambient source. On scene reload Unity defaults to ambient source as ‘Color’ even if there is a Skybox present. So one way is set Ambient Source to be Color under Environment Lighting in the Lighting Window. This is only for when you do not want Skybox to be used as Ambient Source.