Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function moveLeft()
  2.  
  3. turtle.turnLeft()
  4. turtle.forward()
  5. turtle.turnRight()
  6.  
  7. end
  8.  
  9. for a=1,10 do
  10.  
  11. turtle.place()
  12. moveLeft()
  13. turtle.up()
  14. turtle.place()
  15. turtle.down()
  16. moveLeft()
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement