Advertisement
Guest User

startup

a guest
Jun 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local pos = 25
  2.  
  3. mon = peripheral.wrap("back")
  4. mon.clear()
  5. mon.setBackgroundColor(colors.gray)
  6. mon.setTextScale(2)
  7.  
  8. while true do
  9. mon.clear()
  10. mon.setCursorPos(pos,1)
  11. text = "Laufschrift von JoJaProductions"
  12. mon.write(text)
  13. pos = pos-1
  14.  
  15. if pos == -#text then
  16. pos = 25
  17. end
  18. sleep(0.1)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement