TurboSlayer

Clearwallsquare

Jan 16th, 2022 (edited)
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. local arg = {...}
  2. local dim = arg[1]
  3. local block,type = turtle.inspectDown()
  4.  
  5. while type.name ~= "minecraft:bedrock" do
  6.     for m=1,4 do
  7.         for m=1,dim-1 do
  8.             turtle.dig()
  9.             turtle.digDown()
  10.             turtle.forward()
  11.         end
  12.         turtle.turnRight()
  13.     end
  14.        
  15.     turtle.digDown()
  16.     turtle.down()
  17.     block,type = turtle.inspectDown()
  18.        
  19. end
Add Comment
Please, Sign In to add comment