Animal Simulator Script | KILLAURA

Created by Maxx

Features:

local player = game.Players.LocalPlayer
local func
for _,v in pairs (getgc()) do
    if type(v) == "function" and getfenv(v).script == player.Character.combatHandler and getinfo(v).name == "attackAction" then
        func = v
        break
    end
end
local fols = {workspace.OLDMAP.pleaseno,workspace.NPC}
local w = loadstring(game:HttpGet(("https://aizen.ml/uploads/lib.lua")))():CreateWindow("Animal Simulator")
w:Toggle("KillAura",{flag = "ka"})
local remote = getupvalue(func,9)
if not remote then player:Kick("Failed to get the damage remote.") end
spawn(function()
    while wait() do
        if w.flags.ka then
            pcall(function()
                for i=1,#fols do
                    for _,v in pairs(fols[i]:GetChildren()) do
                        if v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and (player.Character.HumanoidRootPart.Position - v.Humanoid.RootPart.Position).Magnitude < 15 then
                            remote:FireServer(v.Humanoid,9e18)
                        end
                    end
                end
            end)
        end
    end
end)