Advertisement
Guest User

startup

a guest
Feb 1st, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. mon = peripheral.wrap("bottom")
  2. mon.setTextColor(colors.white)
  3. mon.setTextScale(5)
  4. mon.clear()
  5. x = 1
  6. y = 1
  7. while true do
  8. mon.setCursorPos(x,y)
  9. mon.write("Enderman")
  10. if x == 10 then
  11. x = 1
  12. sleep(1)
  13. mon.clear()
  14. mon.setCursorPos(1,1)
  15. mon.write("n")
  16. sleep(1)
  17. mon.setCursorPos(1,1)
  18. mon.write("an")
  19. sleep(1)
  20. mon.setCursorPos(1,1)
  21. mon.write("man")
  22. sleep(1)
  23. mon.setCursorPos(1,1)
  24. mon.write("rman")
  25. sleep(1)
  26. mon.setCursorPos(1,1)
  27. mon.write("erman")
  28. sleep(1)
  29. mon.setCursorPos(1,1)
  30. mon.write("derman")
  31. sleep(1)
  32. mon.setCursorPos(1,1)
  33. mon.write("nderman")
  34. sleep(1)
  35. else
  36. x = x + 1
  37. sleep(1)
  38. mon.clear()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement