MADE BY brickmane
FEATURE:
- KILL AURA
- .
- https://www.roblox.com/games/9243187709/Update-Log-New-Badges-Pedagondia-Faunas
SCRIPT:
-- KillAura Made By Brickmane
-- Cheerios#0447
-- Pls dont remove credit if you are trying to make a video or upload it to different script forums :(
-- or i will call saul goodman
getgenv().KillAura = true
getgenv().Delay = 0.01 -- recommend is 0.01
getgenv().MAXDISTANCE = 57 -- recommend on 57 or else it wont work :(
getgenv().MINDISTANCE = 3 -- recommend on 3
local mainPlayer = game.Players.LocalPlayer.Character
-- ANTI CHEAT BYPASS
local mt = getrawmetatable(game)
setreadonly(mt, false)
local old = mt.__namecall
mt.__namecall = newcclosure(function(self, ...)
local method = getnamecallmethod()
if method == "FireServer" and self.Name == "AntiExploit" then
return wait(9e9)
end
return old(self, ...)
end)
-- DETECTING PLAYRES
function getClosestPlayer()
local closest_player, closest_distance = nil, MAXDISTANCE
for i, player in ipairs(workspace:GetChildren()) do
if player:FindFirstChild("Humanoid") and player:FindFirstChild("HumanoidRootPart") and player ~= mainPlayer then
local distance = (player.HumanoidRootPart.CFrame.Position - mainPlayer.HumanoidRootPart.CFrame.Position).magnitude
if distance < closest_distance then
closest_player = player
closest_distance = distance
end
end
end
return closest_player, closest_distance
end
-- MAIN
while task.wait(Delay) and KillAura do
task.spawn(function()
for i = 1, 10 do
local plr, distance = getClosestPlayer()
if plr and distance >= MINDISTANCE then
game:GetService("ReplicatedStorage").Events.Attack:FireServer(plr.Humanoid, 1)
task.wait(Delay)
end
task.wait(Delay)
end
end)
end