Ezteyh

startupbombup

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