if(Application.LoadLevel == 1){
if (scoreCount > 2){
Application.LoadLevel (“Level 2”);
}
}
Hello @OmniTsunami,
I belive you are actually looking for “Application.loadedLevel” property , instead of “LoadLevel”;
if(Application.loadedLevel== 1){
if (scoreCount > 2){
Application.LoadLevel ("Level 2");
}
}
-Leo