What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Kill All Guards Open Source

Version / Update: v1.0.0
Download / Script Link
getgenv().kill_all = not getgenv().kill_all;

if (getgenv().kill_all) then
local delay = 0.15
repeat
local tool = game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool");
local children = game:GetService("Workspace").Police:GetChildren();
if (#children > 0) and (tool) then
for _, guard in (children) do
local humanoid = guard:FindFirstChildWhichIsA("Humanoid");
local head = guard:FindFirstChild("Head");
if (not head) or (not humanoid) or (humanoid.Health == 0) then
continue;
end
game:GetService("ReplicatedStorage").RS_Package.Assets.Remotes.Damage:FireServer("Damage", tool, humanoid, humanoid.Health, head, tool.Name, head.Position, {});
task.wait(0.1)
end
end
task.wait(0.1)
until (not getgenv().kill_all);
end
[ View More ]
dfb4c96c-8fbd-436f-8d62-e64cfed57285.webp


Open source and freeKill all guardsWork on all EXECUTOR
 
Back
Top