Advertisement
Muzze77

Untitled

Oct 30th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. colors = {
  2. colors.white,
  3. colors.black,
  4. colors.red,
  5. colors.green,
  6. colors.blue,
  7. colors.yellow,
  8. colors.orange,
  9. colors.purple,
  10.  
  11. }
  12. m = table.maxn(colors)
  13. m = m + 1
  14. col = 1
  15. n = 1
  16. while true do
  17.     while n ~= m do
  18.     print(colors[n])
  19.     rs.setBundledOutput(colors[n)]
  20.     n = n + 1
  21.     if n == m then
  22.     n = 1
  23.     end
  24. sleep(0.3)
  25.     end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement