Change Level after 10 secs

I want to display my company logo at the beginning of my game but after 5-10 secs I want it to go to the next level how would I go about doing this.

Thanks For any help.

create a starting scene and the game scene, on the starting scene, create an empty GUITexture, that will receive your company logo image and a new javascript, paste the following code :

function Start () {

yield WaitForseconds (5);

<p>Application.LoadLevel("scene2"); // scene2 is the next scene you want to load</p>

}

attach the script to your GuiTexture Object and you're ready to go! A simple splash screen, you can add some other effects like fading, changing the font color and so on if you wish so.

Make a new scene place your logo in the scene and then drag the following script to the image or animated object:

function Start(){

yield WaitForSeconds (10);

Application.LoadLevel(1);

}

Now the main thing is that you have to make sure all your scene are set up to do so go to:

"File" look for the following option "Build Settings"

Click on Build Settings and from there a menu will pop up, Now when the menu opens you will see a list box called "Scenes in Build " Now in this list box drag and dropped you Scene. Make sure they are in order the logo should be the first one if it is you will see on the side it will say (0) this tells you what's going to load when the game is building and make sure the check Boxes are ticked. the level you want to load can be underneath the logo scene and that should have the following number (1). Now in the code as you can see it says Application.LoadLevel (1); this will load the first level after the timer is up on the first scene which is your logo