Advertisement
Guest User

test

a guest
Aug 28th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. mon = peripheral.wrap("left")
  2. xPos = 1
  3. txt = "code"
  4.  
  5. term.clear()
  6. term.setCursorPos(xPos,5)
  7. print(txt)
  8. term.clear()
  9.  
  10. while true do
  11.   term.setCursorPos(xPos,5)
  12.   term.clearLine()
  13.   print(txt)
  14.   sleep(1.4)
  15.   xPos = xPos + 1
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement