Advertisement
fatboychummy

teeeeesssttt

Nov 16th, 2021
1,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. local sleeper = 0.15
  2.  
  3. local function me()
  4.     for i = 1, 10 do
  5.         term.write("Me")
  6.         local x,y = term.getCursorPos()
  7.         term.setCursorPos(x,y+1)
  8.         sleep(sleeper)
  9.     end
  10. end
  11.  
  12. me()
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement