Advertisement
Guest User

startup

a guest
Dec 1st, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. print("Displaying text...")
  2. print("Hold Ctrl-T to terminate."
  3.  
  4. local pos = 18
  5.  
  6. mon = peripheral.wrap("right")
  7. mon.clear()
  8. mon.setBackgroundColor(colors.red)
  9. mon.setTextColor(colors.white)
  10. mon.setTextScale(5)
  11.  
  12. while true do
  13.  
  14.   if pos==-26
  15.     pos = 18
  16.   end
  17.  
  18.   mon.clear()
  19.   mon.setCursorPos(pos,1)
  20.   mon.write("RedTek's Laboratory")
  21.  
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement