Advertisement
herobrinethree

stillminer

Feb 8th, 2021 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. dig = function(amount)
  2. for i = 0, amount, 1
  3. do
  4. turtle.dig()
  5. end
  6. end
  7. term.write("Select Amount of Blocks Mined: ")
  8. local Amount = read()
  9. dig(Amount)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement