Advertisement
Guest User

startup

a guest
Aug 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local pos = 18
  2.  
  3. mon = peripheral.wrap("left")
  4. mon.clear()
  5. mon.setBackgroundColor(1)
  6. mon.setTextColor(colors.red)
  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("Negozio del Nether")
  18.    pos = pos-1
  19.    
  20.    os.sleep(0.15)
  21.    
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement