Hello again!
Ok i need to know, once the total score is reached the game goes to a "You win!" screen with "replay" and "quit"
How ,once the maximum total score is reached, do i change the room to another?
Thanks 8)
TAM
game.score is the variable you want, I think. It holds the current score- so you could simply check if game.score == whatever_your_max_score is in the repeatedly_execute function, and once you reach it, use player.changeRoom.
cool thanks Ghost! Your a very big help.