local remote = game:GetService("ReplicatedStorage")
:WaitForChild("rbxts_include")
:WaitForChild("node_modules")
:WaitForChild("@rbxts")
:WaitForChild("remo")
:WaitForChild("src")
:WaitForChild("container")
:WaitForChild("terrain.clientRemovedTerrain")
local player = game.Players.LocalPlayer
local root = player.Character:WaitForChild("HumanoidRootPart")
_G.TerrainAura = true
local radio = 15
local densidad = 5
task.spawn(function()
print("Excavadora activada.")
while _G.TerrainAura do
local miPos = root.Position
for x = -radio, radio, densidad do
for y = -radio, radio, densidad do
for z = -radio, radio, densidad do
local targetPos = miPos + Vector3.new(x, y, z)
remote:FireServer(targetPos)
task.wait(0.01)
end
end
end
task.wait(0.5)
end
end)
Comments
Oh ITS working sorry
Not working or my bad