Advertisement
TechManDylan

BlockPlacer

Oct 24th, 2023 (edited)
1,212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. while true do
  2.   for slot = 1, 16 do
  3.     if turtle.getItemCount(slot) > 0 then
  4.       turtle.select(slot)
  5.       turtle.placeDown()
  6.       os.sleep(5)
  7.     end
  8.     os.sleep(1)
  9.   end
  10. end
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement