Assets/Scripts/Unlockables.cs(62,20): error CS1660: Cannot convert `lambda expression' to non-delega

Hi I got this error and idk how to fix it…

        bestScore = PlayerPrefs.GetInt("Bestscore");

        if(bestScore => 20){
            second.SetActive(true);
        }

        if(bestScore => 50){
            third.SetActive(true);
        }

        if(bestScore => 100){
            third.SetActive(true);
        }

        if(bestScore => 250){
            fourth.SetActive(true);
        }
        if(bestScore => 500){
            fifth.SetActive(true);
        }
        if(bestScore => 750){
            sixth.SetActive(true);
        }
        if(bestScore => 1000){
            seventh.SetActive(true);
        }
        if(bestScore => 1500){
            eighth.SetActive(true);
        }
        if(bestScore = 2000 && bestScore > 2000){
            ninth.SetActive(true);
        }

replace => with >=

1 Like

It works thanks!