I keep getting this error for a score keeper.. Operator `==' cannot be applied to operands of type `method group' and `int'

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