Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Places a torch every 5th block until runs into wall
- turtle.select(1)
- turtle.up()
- while true do
- turtle.placeDown()
- for f=1,5 do
- turtle.forward()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement