Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Counts down in the output window
- x = 0
- while true do
- wait(1)
- x = x - 1 -- Put the number you want to count down by.
- print(x)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement