Advertisement
Fettish

Turtle Grief Bot

Feb 1st, 2025 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. turtle.select(16)
  2. turtle.refuel(64)
  3. turtle.select(1)
  4.  
  5. local x = 7
  6.  
  7. function bomb()
  8.     local length = 10
  9.  
  10.     for i = 1, length, 1 do
  11.         turtle.select(2)
  12.         turtle.placeDown()
  13.         turtle.select(1)
  14.         turtle.up()
  15.         turtle.placeDown()
  16.         turtle.forward()
  17.         turtle.down()
  18.     end
  19. end
  20.  
  21. function turnLeft()
  22.     turtle.turnLeft()
  23.     turtle.forward()
  24.     turtle.turnLeft()
  25. end
  26.  
  27. function turnRight()
  28.     turtle.turnRight()
  29.     turtle.forward()
  30.     turtle.turnRight()
  31. end
  32.  
  33. for i = 1, x, 1 do
  34.     bomb()
  35.     turnLeft()
  36.     bomb()
  37.     turnRight()
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement