Advertisement
argaman

Untitled

Jun 16th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function moveUp(blocks)
  2. for i=1,blocks do
  3. turtle.up()
  4. end
  5. end
  6.  
  7. function moveDown(blocks)
  8. for i=1,blocks do
  9. turtle.down()
  10. end
  11. end
  12.  
  13. moveUp(86)
  14. sleep(5)
  15. moveDown(86)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement