--Uploaded On https://youtube.com/AhmedMode
--Published on https://ahmedmode.com
--Credits goes to the Jumble#1293
--Scripts Below:

--Scripts


--First Script Kill Aura:

_G.Spam = true

local KEY = "Q00" -- Change to E00 or R00 or T00 to use other skills, Q00 is the best since it has low cooldown
local closest

function GetClosestTorso()
   local plr = game.Players.LocalPlayer
   local plrtorso = plr.Character:FindFirstChild("HumanoidRootPart")
   local minDist = math.huge
   local closestTorso
   for _,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
       if v ~= plr then
           local torso = v:FindFirstChild("HumanoidRootPart")
           if torso then
               local dist = (torso.Position - plrtorso.Position).magnitude
               if dist < minDist then
                   minDist = dist
                   closestTorso = torso
               end
           end
       end
   end
   closest = closestTorso
   return closestTorso
end

while _G.Spam do
    task.wait()
    GetClosestTorso()
    if closest and closest.Parent and closest.Parent:FindFirstChild("Humanoid") then
        game:GetService("ReplicatedStorage")._remotes.HitboxCreationEvent:FireServer(KEY, closest.Parent.Humanoid)
    end
end

____________________________________________________________________________________________________________________________________________

--Second Script Kill Aura:

_G.Key = true

while _G.Key do
    task.wait()
local KEY = "Q" -- Change to E R or T to use other skills, should be the same as the other script

game:GetService("ReplicatedStorage")._remotes.AttackCooldownEvent:FireServer(KEY)
end