Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for slot = 1, 16 do
- turtle.select(slot)
- local blocks = 64
- while blocks > 0 do
- if turtle.placeDown() then
- blocks = blocks - 1
- else
- turtle.back()
- turtle.turnLeft()
- end
- turtle.forward()
- end
- end
Add Comment
Please, Sign In to add comment