Functions: Kill aura, Kill Aura for bosses, Kill Aura for normal dungeons, Kill Aura for event dungeons

Installation guide:
Copy the script from the button below.
Run any Injector (We recommend KRNL Injector)
Install it, insert the script and click execute
Enjoy it)
Kill aura
getgenv().killAura = true
local player = game:GetService("Players").LocalPlayer
while killAura and task.wait() do
for i,v in pairs(game:GetService("Workspace").Monsters[player.Stage.Value]:GetChildren()) do
game:GetService("ReplicatedStorage").Events.DmgEvent:FireServer(v)
end
end
Kill Aura for bosses
getgenv().bossAura = true
local player = game:GetService("Players").LocalPlayer
local arena = "FightArea_" .. tostring(player.UserId)
while bossAura and task.wait() do
local status = game:GetService("Workspace"):FindFirstChild(arena)
if status then
for i,v in pairs(status:GetChildren()) do
if string.match(v.Name, "monster") then
game:GetService("ReplicatedStorage").Events.DmgEvent:FireServer(v)
end
end
end
end
Kill Aura for normal dungeons
getgenv().dungeonAura = true
local player = game:GetService("Players").LocalPlayer
while dungeonAura and task.wait() do
for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
if string.match(v.Name, "monster") then
game:GetService("ReplicatedStorage").Events.DmgEvent:FireServer(v)
end
end
end
Kill Aura for event dungeons
getgenv().eventAura = true
local player = game:GetService("Players").LocalPlayer
while eventAura and task.wait() do
local event = game:GetService("Workspace"):WaitForChild("CopybookFolder")
for i,v in pairs(event:GetChildren()) do
if string.match(v.Name, "monster") then
game:GetService("ReplicatedStorage").Events.DmgEvent:FireServer(v)
end
end
for i,v in pairs(game:GetService("Workspace").Monsters:GetChildren()) do
if string.match(v.Name, "monster") then
game:GetService("ReplicatedStorage").Events.DmgEvent:FireServer(v)
end
end
end