Advertisement
Guest User

Untitled

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