Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. local pos = 18
  2.  
  3. mon = peripheral.wrap("bottom")
  4. mon.clear()
  5. mon.setBackgroundColor(16)
  6. mon.setTextColor(32768)
  7. mon.setTextScale(5)
  8.  
  9. while true do
  10.  
  11.  if pos==-120 then
  12.   pos = 18
  13.  end
  14.  
  15.  mon.clear()
  16.  mon.setCursorPos(pos,1)
  17.  mon.write("News: We are going to the end! Tier 2 Rockets underway for future space travellers. Huzzah!")
  18.  pos = pos-1
  19.  
  20.  os.sleep(0.1)
  21.  
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement