Back to Scripts
Kill All Guards Open Source

Kill All Guards Open Source

ScriptBlox
Free

Game: Notoriety: A PAYDAY® Experience

910 Views
9 Likes
1 Dislikes
CatBoyy

CatBoyy

offline

Features

If your making a script for this game and want features i can make: - yell at all civil - auto respond - data loss method (for dupe if trading every comes) - destroy any npc fully (wont shoot, run away, etc) made by @kylosilly add me if ur interested in anything

Tags

kill all notoriety script kill all notoriety script kill all undetected notoriety script kill all keyless notoriety script kill all op

Script Code

-- you must hold any tool for this to work
getgenv().kill_all = not getgenv().kill_all;

if (getgenv().kill_all) then
    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, {});
            end
        end
        task.wait();
    until (not getgenv().kill_all);
end

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...