Go To new Scene Button!

So Ive made a Cube then inserted this script into it

function OnTriggerEnter(goalCollision : Collider){ if(goalCollision.gameObject.tag == “Player”){

Application.LoadLevel(“Parkour2”);

}

Ive named the first person thing Player and the level Parkour2 is in build list thing
but it dosent work…

is it a simple spelling mistake? ive checked trigger on my Cube.
Also is it Java Script?

You could try using the level id instead of the Level name
Application.LoadLevel(2);
replace 2 with your level id from the build list.