Advertisement
Guest User

startup

a guest
Sep 26th, 2017
60
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("back")--attache le l'ecran derriere
  3. mon.clear()
  4. mon.setTextScale(4)
  5. while true do
  6.  
  7.   if pos == -16 then
  8.    
  9.     pos = 7
  10.        
  11.   end
  12.  
  13.   mon.clear()
  14.   mon.setCursorPos(pos,1)
  15.   mon.write("Lamisedaxeh Corp.")
  16.   pos = pos-1
  17.  
  18.   os.sleep(0.30)
  19.  
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement