Advertisement
AlexZockt_

Lampe

Mar 30th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. licht = 0
  2. while licht < 1 do
  3. rs.setBundledOutput("right", colors.red)
  4. sleep(0.5)
  5. rs.setBundledOutput("right", colors.yellow)
  6. sleep(0.5)
  7. rs.setBundledOutput("right", colors.blue)
  8. sleep(0.25)
  9. rs.setBundledOutput("back", colors.red)
  10. sleep(0.5)
  11. rs.setBundledOutput("back", colors.yellow)
  12. sleep(0.5)
  13. rs.setBundledOutput("back", colors.blue)
  14. sleep(0.25)
  15. rs.setBundledOutput("left", colors.red)
  16. sleep(0.5)
  17. rs.setBundledOutput("left", colors.yellow)
  18. sleep(0.5)
  19. rs.setBundledOutput("left", colors.blue)
  20. sleep(0.25)
  21. rs.setBundledOutput("bottom", colors.red)
  22. sleep(0.5)
  23. rs.setBundledOutput("bottom", colors.yellow)
  24. sleep(0.5)
  25. rs.setBundledOutput("bottom", colors.blue)
  26. sleep(0.25)
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement