IoIiderp

fill floor

Jun 2nd, 2021 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. for slot = 1, 16 do
  2.     turtle.select(slot)
  3.     local blocks = 64
  4.     while blocks > 0 do
  5.         if turtle.placeDown() then
  6.             blocks = blocks - 1
  7.         else
  8.             turtle.back()
  9.             turtle.turnLeft()
  10.         end
  11.         turtle.forward()
  12.     end
  13. end
Add Comment
Please, Sign In to add comment