Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --program to place straight down 60 blocks
- i = 60
- while i > 1 do
- turtle.down()
- turtle.place()
- i = i -1
- end
- while i < 60 do
- turtle.up()
- i = i +1
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement