Advertisement
alllllix

ALEX_SAVE_THIS

Nov 3rd, 2024 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --black1
  2. --red2
  3. --glass3
  4. art1 = {3,3,3,3,3,3,3}
  5. art2 = {3,3,3,1,1,3,3}
  6. art3 = {3,3,1,2,2,1,3}
  7. art4 = {3,1,2,2,1,3,3}
  8. art5 = {3,3,1,2,2,1,3}
  9. art6 = {3,3,3,1,1,3,3}
  10. art7 = {3,3,3,3,3,3,3}
  11. function buildline(line)
  12.  for i = 1, #line do
  13.      x = line[i]
  14.      turtle.select(x)
  15.      turtle.placeDown()
  16.      turtle.forward()
  17.    end
  18. end
  19. buildline(art1)
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement