Advertisement
Guest User

text

a guest
Jul 23rd, 2014
215
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.  
  3. mon = peripheral.warp("right")
  4. mon.clear()
  5. mon.setBackgroundColor(32)
  6. mon.setTextColor(32768)
  7. mon.setTextScale(5)
  8.  
  9. while true do
  10.  
  11.  if pos==-26 then
  12.   pos = 18
  13.  end
  14.  
  15.  mon.clear()
  16.  mon.setCursorPos(pos,1)
  17.  mon.write("Jags a Fag")
  18.  pos = pos-1
  19.  
  20.  os.sleep(0.15)
  21.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement