Advertisement
nnimos

Untitled

May 6th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function turtleline()
  2. local count = 0
  3.  
  4. while count < 50
  5. do
  6. turtle.place()
  7. turtle.left()
  8. turtle.place()
  9. turtle.left()
  10. turtle.place()
  11. turtle.left()
  12. turtle.left()
  13. turtle.left()
  14. count = count+1
  15. end
  16. end
  17.  
  18. turtleline()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement