ball and axe Script | DESTROY EVERYTHING, MAKE EVERYTHING UNBREAKABLE, BUILDING

Created by Amity

Features:

  • DESTROY EVERYTHING
local damageblock = game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("damageBlock")

for i,v in workspace:WaitForChild("map"):WaitForChild("blocks"):GetChildren() do
   damageblock:FireServer(v,1/0)
end
  • MAKE EVERYTHING UNBREAKABLE
local damageblock = game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("damageBlock")

for i,v in workspace:WaitForChild("map"):WaitForChild("blocks"):GetChildren() do
   damageblock:FireServer(v,0/0)
end
  • BUILDING
for i = 1,300 do
   local args = {
       [1] = "Cobblestone", -- Block type
       [2] = i, --x/z level
       [3] = 32 --Y level
   }

   game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("placeBlock"):FireServer(unpack(args))
end