#Test every players score
1 messages · Page 1 of 1 (latest)
why are you using break
break is equivalent to return which ends the code at that point, so as soon any of the break runs it stops the loop completely
i think ur looking for continue statement which breaks current execution only and not the entire loop
ahhh that would make sense, I'll give that a try