Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for i = 10,0,-1 do -- This means that the first number is the start, the second number is end, and the thrid is increase/decrease
- wait(1) -- Wait 1 second so that the numbers can count down normally
- print(i) -- i, meaning 10 down to 0
- end -- Needed ig idk
- -- I don't really know how to do "for i, v in pairs"
- -- so I recomend that you watch a tutorial on that.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement