Advertisement
Guest User

newThing

a guest
Aug 1st, 2014
190
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. jOs = ("Activating your New JasperOS")
  4. b = ("by")
  5. creator = ("xOKxINEXTREMISx")
  6. mon = peripheral.wrap("back")
  7. mon.clear()
  8. mon.setBackgroundColor(42)
  9. mon.setTextColor(32768)
  10. mon.setTextScale(5)
  11.  
  12. while true do
  13.  
  14.   if pos==-36 then
  15.     pos = 18
  16.   end
  17.  mon.clear()
  18.  mon.setCursorPos(pos,1)
  19.  mon.write(jOs)+(b)+(creator)
  20.  pos = pos-1
  21.  
  22.  os.sleep(0.20)
  23.  
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement