All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the PLS DONATE | Kill All

The PLS DONATE | Kill All code is below. Copy & inject it into the game. Enjoy!

PLS DONATE ? [NEW] - Kills every player
local replicatedstorage = game:GetService("ReplicatedStorage")
local events = replicatedstorage.Events:GetChildren()

for i,v in pairs(game.Players:GetChildren()) do
   if v == game.Players.LocalPlayer then continue end
           for _,x in pairs(events) do
               if string.find(x.Name, "Booth") then
                    x:FireServer(v.Character.Head)
               end
           end
end