Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function moveUp(blocks)
- for i=1,blocks do
- turtle.up()
- end
- end
- function moveDown(blocks)
- for i=1,blocks do
- turtle.down()
- end
- end
- moveUp(86)
- sleep(5)
- moveDown(86)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement