Advertisement
ChaOSzz

Untitled

Jun 19th, 2022
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. input.onButtonPressed(Button.B,function(){
  2. if(MyAge < 100)
  3. {
  4. MyAge++
  5. }
  6. basic.showNumber(MyAge)
  7. })
  8.  
  9. input.onButtonPressed(Button.A, function () {
  10. if (MyAge > 0) {
  11. MyAge--
  12. }
  13. basic.showNumber(MyAge)
  14. })
  15.  
  16. input.onGesture(Gesture.Shake,function(){
  17.  
  18. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement