Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local count = 0
- term.write("How many blocks forward? :")
- count = read()
- function Up()
- for i = 1, count do
- turtle.dig()
- turtle.digUp()
- turtle.up()
- turtle.dig()
- turtle.forward()
- turtle.dig()
- turtle.forward()
- turtle.digDown()
- end
- end
- Up()
- print("Job's Done!")
Advertisement
Add Comment
Please, Sign In to add comment