Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. var count = 0;
  2.  
  3. onEvent("upButton", "click", function() {
  4. count = count + 1;
  5. setText("countDisplayLabel", count);
  6. if (count == 20) {
  7. setScreen("gameOverScreen");
  8. setText("finalScoreLabel", count);
  9. }
  10. });
  11.  
  12. onEvent("downButton", "click", function() {
  13. count = count - 1;
  14. setText("countDisplayLabel", count);
  15. if (count == -5) {
  16. setScreen("gameOverScreen");
  17. setText("finalScoreLabel", count);
  18. }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement