Advertisement
Guest User

text

a guest
Aug 22nd, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local pos = 8
  2.  
  3. monitor = peripheral.wrap("back")
  4. monitor.clear()
  5. monitor.setBackgroundColour(2100)
  6. monitor.setTextColour(1)
  7. monitor.setTextScale(4)
  8.  
  9. while true do
  10.  
  11.  
  12.  if pos==-16 then
  13.   pos=8
  14.  end
  15.  
  16.  monitor.clear()
  17.  monitor.setCursorPos(pos,1)
  18.  monitor.write("Jackson's Room")
  19.  pos = pos-1
  20.  
  21.  os.sleep(0.15)
  22.  
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement