Advertisement
Ezteyh

startupbombfrontback

Jun 14th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. sleep(5)
  2.  
  3. function move()
  4. for i = 1, 6, 1 do
  5.  turtle.back()
  6. end
  7. end
  8.  
  9. function bomb()
  10. for i = 1, 5, 1 do
  11.  turtle.place()
  12.  redstone.setOutput("front", true)
  13.  turtle.turnLeft()
  14.  turtle.place()
  15.  redstone.setOutput("front", true)
  16.  turtle.turnRight()
  17.  turtle.turnRight()
  18.  turtle.place()
  19.  redstone.setOutput("front", true)
  20.  turtle.turnLeft()
  21. end
  22. end
  23.  
  24. for i = 1, 4, 1 do
  25. move()
  26. bomb()
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement