Advertisement
natie3

Dig

Sep 21st, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. os.loadAPI("moveAPI")
  2. right = true
  3.  
  4. moveAPI.move("u f dd du")
  5. for i = 1, 3 do
  6.   moveAPI.repeatMoves("f dd du", 4)
  7.   if right then
  8.     moveAPI.move("r dd du dr")
  9.   else
  10.     moveAPI.move("l dd du dl")
  11.   end
  12.   right = not right
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement