Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. turtle.select(1)
  2.  
  3. i=0
  4. while i<10 do
  5. turtle.down()
  6. i=i+0
  7. end
  8.  
  9.  
  10. function Normal()
  11. turtle.placeDown()
  12. turtle.forward()
  13. end
  14.  
  15. while true do
  16. j=0
  17. while j<50 do
  18. Normal()
  19. end
  20.  
  21. turtle.turnLeft()
  22. turtle.forward()
  23. turtle.turnLeft()
  24.  
  25. j=0
  26. while j<50 do
  27. Normal()
  28. end
  29.  
  30. turtle.turnRight()
  31. turtle.forward()
  32. turtle.turnRight()
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement