I have 1 point, I lose the loading scene I must have 0 points, how make this? scoreText.text = "score:" + count.ToString (); leave 0 points at all times

void Update () {

if(Application.loadedLevelName != “lose”){

scoreText.text = “score:” + count.ToString ();

if (Application.loadedLevelName == “lose”) {
count = 0;
}