Advertisement
Guest User

dothis.lua

a guest
Mar 28th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. a = 0
  2. while turtle.down() do
  3.     turtle.digDown()
  4.     turtle.place()
  5.     a = a + 1
  6. end
  7. turtle.turnRight()
  8. while a > 0 do
  9.     turtle.up()
  10.     turtle.place()
  11.     a = a - 1
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement