Advertisement
Burrito33

move

Sep 8th, 2023 (edited)
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. i = 0
  2. function move()
  3. while (i < 100)
  4. do
  5. turtle.select(1)
  6. turtle.placeDown()
  7. turtle.forward()
  8. i = i+ 1
  9. end
  10. end
  11. move()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement