Advertisement
Azzz_4565

Untitled

Jul 8th, 2025
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 6.98 KB | None | 0 0
  1. -- 🔧 CONFIGURATION
  2. _G.Detener = false
  3.  
  4. -- 🔌 SERVICES
  5. local Players = game:GetService("Players")
  6. local LocalPlayer = Players.LocalPlayer
  7. local RunService = game:GetService("RunService")
  8. local UserInputService = game:GetService("UserInputService")
  9. local Lighting = game:GetService("Lighting")
  10. local Workspace = game:GetService("Workspace")
  11. local Debris = game:GetService("Debris")
  12. local stepped = RunService.Stepped
  13.  
  14. -- ===============================
  15. -- PART 1: FIRE ALL REMOTEEVENTS IN TOOLS (MAX SAFE SPAM)
  16. -- ===============================
  17. local function fireServerBoost()
  18.     local tools = {}
  19.     local character = LocalPlayer.Character
  20.     local backpack = LocalPlayer:FindFirstChild("Backpack")
  21.  
  22.     if character then
  23.         for _, item in ipairs(character:GetChildren()) do
  24.             if item:IsA("Tool") then table.insert(tools, item) end
  25.         end
  26.     end
  27.     if backpack then
  28.         for _, item in ipairs(backpack:GetChildren()) do
  29.             if item:IsA("Tool") then table.insert(tools, item) end
  30.         end
  31.     end
  32.  
  33.     for _, tool in ipairs(tools) do
  34.         for _, remote in ipairs(tool:GetChildren()) do
  35.             if remote:IsA("RemoteEvent") then
  36.                 pcall(function() remote:FireServer(tool) end)
  37.             end
  38.         end
  39.     end
  40. end
  41.  
  42. -- ✅ Optimized spam without breaking kill touch
  43. spawn(function()
  44.     while not _G.Detener do
  45.         fireServerBoost()
  46.         task.wait(0.05) -- max safe frequency
  47.     end
  48. end)
  49.  
  50. -- ===============================
  51. -- PART 2: MEGA PSYCHO AURA SYSTEM + HOOKS + CLONES + KILL AURA
  52. -- ===============================
  53. local auraSize = Vector3.new(90, 90, 90)
  54. local auraRange = 9e99999999
  55. local instantKillDamage = 9e999999999999999
  56. local clonesToSpawn = 10
  57. local CLAW_NAME = "Super Power Claws"
  58.  
  59. local lp = LocalPlayer
  60. local CHAR = lp.Character or lp.CharacterAdded:Wait()
  61. local Ignorelist = OverlapParams.new()
  62. Ignorelist.FilterType = Enum.RaycastFilterType.Include
  63. local Disable = Instance.new("BindableEvent")
  64. getgenv().configs = {
  65.     connection = {},
  66.     Disable = Disable,
  67.     Size = auraSize,
  68.     DeathCheck = false
  69. }
  70. local Run = true
  71.  
  72. for _, f in ipairs({wait, task.wait, delay, getrenv().wait}) do
  73.     pcall(function()
  74.         hookfunction(f, function() return RunService.Heartbeat:Wait() end)
  75.     end)
  76. end
  77.  
  78. -- Hooks
  79. local function hookAllDamage()
  80.     for _, f in ipairs(getgc(true)) do
  81.         if typeof(f) == "function" then
  82.             local name = debug.getinfo(f).name
  83.             if name == "TakeDamage" or name == "BreakJoints" or name == "UpdateHealth" or name == "ApplyDamage" or name == "Damage" then
  84.                 pcall(function() hookfunction(f, function(...) return 0 end) end)
  85.             end
  86.         end
  87.     end
  88. end
  89. hookAllDamage()
  90.  
  91. -- EQUIP CLAW
  92. local function equipClaw()
  93.     local claw = lp.Backpack:FindFirstChild(CLAW_NAME) or lp.Character:FindFirstChild(CLAW_NAME)
  94.     if claw then
  95.         claw.Parent = lp.Character
  96.         local handle = claw:FindFirstChild("Handle") or claw:FindFirstChildWhichIsA("BasePart")
  97.         if handle then
  98.             handle.Size = Vector3.new(9e9, 9e9, 9e9)
  99.             handle.CanTouch = true
  100.             handle.Touched:Connect(function(hit)
  101.                 local hum = hit.Parent:FindFirstChildWhichIsA("Humanoid")
  102.                 if hum and hum.Health > 0 then hum.Health = 0 end
  103.             end)
  104.         end
  105.     end
  106. end
  107.  
  108. -- KILL AURA SPAM
  109. RunService.Heartbeat:Connect(function()
  110.     local char = lp.Character
  111.     if not char then return end
  112.     local Tools, Characters = {}, {}
  113.     for _, v in ipairs(Players:GetPlayers()) do
  114.         if v ~= lp and v.Character then table.insert(Characters, v.Character) end
  115.     end
  116.     Ignorelist.FilterDescendantsInstances = Characters
  117.     for _, tool in ipairs(char:GetChildren()) do
  118.         if tool:IsA("Tool") then
  119.             local touch = tool:FindFirstChildWhichIsA("TouchTransmitter", true)
  120.             if touch then
  121.                 local hits = Workspace:GetPartBoundsInBox(
  122.                     touch.Parent.CFrame,
  123.                     touch.Parent.Size + auraSize,
  124.                     Ignorelist
  125.                 )
  126.                 for _, v in ipairs(hits) do
  127.                     local char = v:FindFirstAncestorOfClass("Model")
  128.                     if char and table.find(Characters, char) then
  129.                         local hum = char:FindFirstChildWhichIsA("Humanoid")
  130.                         if hum then hum.Health = 0 end
  131.                         firetouchinterest(touch.Parent, v, 0)
  132.                         firetouchinterest(touch.Parent, v, 1)
  133.                     end
  134.                 end
  135.             end
  136.         end
  137.     end
  138. end)
  139.  
  140. -- CLONES
  141. local function spawnClone()
  142.     local char = lp.Character
  143.     if not char then return end
  144.     local clone = char:Clone()
  145.     for _, d in ipairs(clone:GetDescendants()) do
  146.         if d:IsA("BasePart") then
  147.             d.Transparency = 1
  148.             d.CanCollide = false
  149.             d.CastShadow = false
  150.         elseif d:IsA("Script") or d:IsA("LocalScript") then
  151.             d:Destroy()
  152.         end
  153.     end
  154.     local root = clone:FindFirstChild("HumanoidRootPart")
  155.     local realRoot = char:FindFirstChild("HumanoidRootPart")
  156.     if root and realRoot then
  157.         root.CFrame = realRoot.CFrame * CFrame.new(math.random(-50,50), 0, math.random(-50,50))
  158.     end
  159.     clone.Name = "AuraClone_"..math.random(100000,999999)
  160.     clone.Parent = Workspace
  161.  
  162.     RunService.Heartbeat:Connect(function()
  163.         for _, p in ipairs(Players:GetPlayers()) do
  164.             if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
  165.                 local hum = p.Character:FindFirstChildWhichIsA("Humanoid")
  166.                 if hum and hum.Health > 0 and (hum.Parent.HumanoidRootPart.Position - root.Position).Magnitude < auraRange then
  167.                     hum.Health = 0
  168.                 end
  169.             end
  170.         end
  171.     end)
  172. end
  173.  
  174. -- LAG FUNCTION (After Kill)
  175. local function lagOpponent(plr)
  176.     if not plr or not plr.Character then return end
  177.     for i = 1, 5 do
  178.         local part = Instance.new("Part")
  179.         part.Size = Vector3.new(50, 50, 50)
  180.         part.Transparency = 1
  181.         part.Anchored = true
  182.         part.CanCollide = false
  183.         part.CFrame = plr.Character.HumanoidRootPart.CFrame * CFrame.new(math.random(-30,30),0,math.random(-30,30))
  184.         part.Parent = Workspace
  185.         Debris:AddItem(part, 2)
  186.     end
  187. end
  188.  
  189. -- AFTER KILL DETECTION
  190. local afterKillActive = false
  191. local function onDied()
  192.     afterKillActive = true
  193.     local hum = CHAR:FindFirstChildWhichIsA("Humanoid")
  194.     task.wait()
  195.     local tag = hum and (hum:FindFirstChild("creator") or hum:FindFirstChild("creatorTag"))
  196.     if tag and tag.Value and tag.Value ~= lp then
  197.         lagOpponent(tag.Value)
  198.     end
  199. end
  200.  
  201. -- ON RESPAWN
  202. local function onRespawn(newChar)
  203.     CHAR = newChar
  204.     afterKillActive = false
  205.     equipClaw()
  206.     for i = 1, 2 do spawnClone() end
  207.     newChar:WaitForChild("Humanoid").Died:Connect(onDied)
  208. end
  209.  
  210. -- FINAL SETUP
  211. equipClaw()
  212. for i = 1, clonesToSpawn do spawnClone() end
  213. CHAR:WaitForChild("Humanoid").Died:Connect(onDied)
  214. lp.CharacterAdded:Connect(onRespawn)
  215.  
  216. -- CONSTANT AURA ZAP
  217. RunService.Heartbeat:Connect(function()
  218.     if not afterKillActive then return end
  219.     for _, p in ipairs(Players:GetPlayers()) do
  220.         if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
  221.             local dist = (CHAR.HumanoidRootPart.Position - p.Character.HumanoidRootPart.Position).Magnitude
  222.             local hum = p.Character:FindFirstChildOfClass("Humanoid")
  223.             if hum and dist < auraRange then
  224.                 hum:TakeDamage(instantKillDamage)
  225.             end
  226.         end
  227.     end
  228. end)
  229.  
  230. print("✅ MEGA PSYCHO CLAW AURA FIXED & READY")
  231.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement