Advertisement
Guest User

welcome

a guest
Dec 11th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local mon = peripheral.wrap("bottom")
  2. local pos = 26
  3. mon.setTextScale(5)
  4. mon.clear()
  5. mon.setBackgroundColor(128)
  6. mon.setTextColor(3)
  7. mon.setCursorPos(pos,1)
  8. while true do
  9.   if pos==-20 then
  10.   pos = 20
  11.   end
  12.   mon.clear()
  13.   mon.setCursorPos(pos,1)
  14.   mon.write("Welcome to Lordan!")
  15.   pos = pos - 1
  16.   os.sleep(0.20)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement