Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. function loop()
  2.     bot:move_offset(1,0)
  3.     bot:wait(function()
  4.         bot:move_offset(0,1)
  5.         bot:wait(function()
  6.             bot:move_offset(-1,0)
  7.             bot:wait(function()
  8.                 bot:move_offset(0,-1)
  9.                 bot:wait(loop, 1)
  10.             end,1)
  11.         end,1)
  12.     end,1)
  13. end
  14. loop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement