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