Next Level???

I want to make a script where it loads the next level in order, No matter what level its on.
This is what i have right now

if (other.CompareTag(“Flag”)){
if(Done){
Application.LoadLevel(“Level Two”);
}
}
But i would have to have TONS of tags for lvl 2,3,4,5 etc. So how can i do it so it goes to next level in order?
EXAMPLE: Level One > Level Two > Level 3…

Take a look thru the scripting reference:

You can write code related to this iirc:

Application.LoadLevel(Application.loadedLevel + 1);

But skip through the reference and see what works best for you!

This is also useful to reload the existing level with:

Application.LoadLevel(Application.loadedLevel);

This method uses the index of the level as shown in the Build Settings of your project. Just make sure that your levels are in the right order in the build settings.