Advertisement
lhenders

turtle down

Jun 7th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. --program to place straight down 60 blocks
  2. i = 60
  3. while i > 1 do
  4. turtle.down()
  5. turtle.place()
  6. i = i -1
  7. end
  8. while i < 60 do
  9. turtle.up()
  10. i = i +1
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement