Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. run = true
  2.  
  3. spacesmoved = 0
  4.  
  5. while run do
  6. if turtle.detect() then
  7. turtle.turnRight()
  8.  
  9. elseif not turtle.detect() and spacesmoved <= 25 then
  10. turtle.forward(1)
  11. spacesmoved = spacesmoved + 1
  12.  
  13. else
  14. run = false
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement