Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local sleeper = 0.15
- local function me()
- for i = 1, 10 do
- term.write("Me")
- local x,y = term.getCursorPos()
- term.setCursorPos(x,y+1)
- sleep(sleeper)
- end
- end
- me()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement