Advertisement
ImaginaryGamer

Roblox Output Counting Up Script

May 16th, 2015
720
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.13 KB | None | 0 0
  1. -- Counts up in the output window
  2.  
  3. x = 0
  4. while true do
  5.     wait(1)
  6.     x = x + 1 -- Put the number you want to count up by.
  7.     print(x)
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement