Advertisement
rungholt

tdeployget

Dec 10th, 2022
744
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 1 0
  1. turtle.up()
  2. turtle.turnRight()
  3.  
  4. local function getTurtle()
  5.     for i = 2, 16 do
  6.         turtle.forward()
  7.         turtle.select(i)
  8.         turtle.digDown()
  9.     end
  10. end
  11.  
  12. local function goBack()
  13.     for i = 1, 15 do
  14.         turtle.back()
  15.     end
  16.     turtle.down()
  17.     turtle.turnLeft()
  18. end
  19.  
  20. getTurtle()
  21. goBack()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement