hey guys, just didnt know what the problem was to this… ill start off by giving you my code for the prob
if(highscores[0] < score)
highscores[0] = score;
else if(highscores[1] < score)
highscores[1] = score;
else if(highscores[2] < score)
highscores[2] = score;
else if(highscores[3] < score)
highscores[3] = score;
else if(highscores[4] < score)
highscores[4] = score;
ok so after the if(highscores[0] < score) is triggered all the events after it are also triggered. How can I make it so once one event is triggered that’s the only one that happens?