Go to other scene

Hi everyone.

I have the playscene. and if you attach something, you will go to a scene without nothing. The whole scene is empty without an object except the main camera. But now my question is. I want to give my camera in the empty scene a JS that will go to an other scene after 3 seconds.

In short summary:
If you are in a scene. You need to go to an other scene without doing anything. It goes automatically to an other scene after 3 seconds.

How to do this in JS?

Think I saw this from some tutorial. Correct me if I’m wrong:

function Start() {
   yield WaitForSeconds(3);
   Application.LoadLevel("LevelTwo");
}

have for C# ???
@fireDude67