Advertisement
Guest User

startup

a guest
Jun 30th, 2015
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local pos = 18
  2. mon = peripheral.wrap("right")
  3. mon.clear()
  4. mon.setBackgroundColor(2)
  5. mon.setTextColor(32768)
  6. mon.setTextScale(5)
  7.  
  8. while true do
  9.  
  10.  if pos==-26 then
  11.   pos = 18
  12.  end
  13.  
  14.  mon.clear()
  15.  mon.setCursorPos(pos,1)
  16.  mon.write("Welcome To Vladimir's Hut")
  17.  pos = pos-1
  18.  
  19.  os.sleep(0.15)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement