Advertisement
Hydroxios

Untitled

Mar 21st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. p = peripheral.wrap("top")
  2. p.clear()
  3. p.setTextScale(5)
  4.  
  5. text = {
  6. "H",
  7. "Y",
  8. "D",
  9. "R",
  10. "O",
  11. "X",
  12. "I",
  13. "O",
  14. "S"
  15. }
  16.  
  17. while true do
  18. p.clear()
  19. for k,v in ipairs(text) do
  20. p.setCursorPos(1,8)
  21. p.write(v)
  22. os.sleep(0.5)
  23. p.scroll(1)
  24. end
  25. os.sleep(0.5)
  26. for i=1,7 do
  27. p.scroll(1)
  28. os.sleep(0.5)
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement