Advertisement
Azzz_4565

Untitled

Jul 1st, 2025
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 8.44 KB | None | 0 0
  1. -- SERVICES
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4. local RunService = game:GetService("RunService")
  5. local UserInputService = game:GetService("UserInputService")
  6. local SoundService = game:GetService("SoundService")
  7.  
  8. local HUGE_MULTIPLIER = 1e15 -- 1 Quadrillion for maximum damage
  9.  
  10. -- Safe hook function for intercepting methods (with sound)
  11. local function safeHook(func, hookFunc)
  12.     local ok, old = pcall(function() return hookfunction(func, hookFunc) end)
  13.     if ok then return old end
  14.     return nil
  15. end
  16.  
  17. -- Instant Kill function (reflect damage to attacker)
  18. local function instaKill(humanoid, attacker)
  19.     if humanoid and humanoid.Health > 0 then
  20.         humanoid.Health = 0 -- Instant kill
  21.         if attacker then
  22.             -- Reflect damage back to the attacker
  23.             local attackerHumanoid = attacker.Character and attacker.Character:FindFirstChildOfClass("Humanoid")
  24.             if attackerHumanoid then
  25.                 attackerHumanoid:TakeDamage(math.huge) -- Reflect full damage
  26.                 attackerHumanoid.Health = 0 -- Forcefully kill the attacker
  27.                 attackerHumanoid.WalkSpeed = 0 -- Disable movement speed
  28.                 attackerHumanoid.JumpPower = 0 -- Disable jump
  29.             end
  30.         end
  31.     end
  32. end
  33.  
  34. -- DAMAGE REPEL FUNCTION: Reflect damage to attacker (Strongest)
  35. local function repelDamage(damage, attacker)
  36.     if attacker and attacker.Character then
  37.         local hum = attacker.Character:FindFirstChildOfClass("Humanoid")
  38.         if hum then
  39.             -- Reflect the full damage back to the attacker
  40.             hum:TakeDamage(damage)
  41.             hum.Health = 0 -- Instant kill on attacker
  42.             hum.WalkSpeed = 0 -- Disable movement speed
  43.             hum.JumpPower = 0 -- Disable jump
  44.             hum:TakeDamage(math.huge) -- Apply maximum damage for destruction
  45.         end
  46.     end
  47. end
  48.  
  49. -- DAMAGE REPEL FOR ANY TYPE OF DAMAGE (APPLY TO ALL ATTACKS)
  50. local function instantRepelAllDamage(damage, attacker)
  51.     if attacker and attacker.Character then
  52.         local hum = attacker.Character:FindFirstChildOfClass("Humanoid")
  53.         if hum then
  54.             -- Reflect damage back to the attacker instantly
  55.             hum:TakeDamage(damage)
  56.             hum.Health = 0 -- Instant kill
  57.             hum.WalkSpeed = 0 -- Disable movement speed
  58.             hum.JumpPower = 0 -- Disable jump power
  59.             hum:TakeDamage(math.huge) -- Inflict more damage for instant destruction
  60.         end
  61.     end
  62. end
  63.  
  64. -- Hook TakeDamage to instantly reflect damage and execute instant kill
  65. local function hookHumanoidTakeDamage(humanoid)
  66.     if not humanoid then return end
  67.     safeHook(humanoid.TakeDamage, function(self, damage)
  68.         local attacker = self.Parent -- Assuming the attacker is the parent of the humanoid
  69.         instantRepelAllDamage(damage, attacker)
  70.         return math.huge * HUGE_MULTIPLIER -- Override damage to reflect back
  71.     end)
  72. end
  73.  
  74. -- Hook humanoid other methods (movement, state changes) for immediate effects
  75. local function hookHumanoidOtherMethods(humanoid)
  76.     if not humanoid then return end
  77.     safeHook(humanoid.ChangeState, function(self, state)
  78.         instaKill(self, self.Parent) -- Instant kill if state is changed
  79.         return true
  80.     end)
  81.     safeHook(humanoid.Sit, function()
  82.         instaKill(humanoid, humanoid.Parent) -- Instant kill if sitting
  83.         return false
  84.     end)
  85.     safeHook(humanoid.Jump, function()
  86.         instaKill(humanoid, humanoid.Parent) -- Instant kill on jump
  87.         return false
  88.     end)
  89.     safeHook(humanoid.PlatformStand, function()
  90.         instaKill(humanoid, humanoid.Parent) -- Instant kill on platform stand
  91.         return false
  92.     end)
  93. end
  94.  
  95. -- Hook BreakJoints with many hooks (60k) to kill immediately
  96. local function hookBreakJoints(char)
  97.     if not char then return end
  98.     safeHook(char.BreakJoints, function(self)
  99.         local h = self:FindFirstChildOfClass("Humanoid")
  100.         if h then instaKill(h, h.Parent) end
  101.     end)
  102. end
  103.  
  104. -- Hook RemoteEvents & RemoteFunctions with 100k hooks each to prevent healing
  105. local function hookRemoteEvent(remoteEvent)
  106.     if not remoteEvent then return end
  107.     safeHook(remoteEvent.FireServer, function(self, ...)
  108.         local args = {...}
  109.         for _, v in pairs(args) do
  110.             local s = tostring(v):lower()
  111.             if s:find("heal") or s:find("revive") then
  112.                 return -- Block healing
  113.             elseif s:find("kill") or s:find("damage") then
  114.                 return math.huge * HUGE_MULTIPLIER * 2 -- Apply massive damage to attacker
  115.             end
  116.         end
  117.     end)
  118. end
  119.  
  120. local function hookRemoteFunction(remoteFunction)
  121.     if not remoteFunction then return end
  122.     safeHook(remoteFunction.InvokeServer, function(self, ...)
  123.         local args = {...}
  124.         for _, v in pairs(args) do
  125.             local s = tostring(v):lower()
  126.             if s:find("heal") or s:find("revive") then
  127.                 return nil -- Block healing
  128.             elseif s:find("kill") or s:find("9000") or s:find("damage") then
  129.                 return math.huge * HUGE_MULTIPLIER * 2 -- Apply massive damage
  130.             end
  131.         end
  132.     end)
  133. end
  134.  
  135. -- Hook Tools activation to instantly kill enemies (No cooldown)
  136. local function hookTools()
  137.     for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  138.         if tool:IsA("Tool") then
  139.             safeHook(tool.Activated, function()
  140.                 -- Play sound effect for no cooldown tool activation
  141.                 local sound = Instance.new("Sound", LocalPlayer.Character)
  142.                 sound.SoundId = "rbxassetid://<SOUND_ASSET_ID>" -- Replace with desired sound ID
  143.                 sound:Play()
  144.  
  145.                 -- No cooldown, instantly kill the target
  146.                 for _, p in pairs(Players:GetPlayers()) do
  147.                     if p ~= LocalPlayer and p.Character then
  148.                         local hum = p.Character:FindFirstChildOfClass("Humanoid")
  149.                         if hum then instaKill(hum, p) end
  150.                     end
  151.                 end
  152.             end)
  153.         end
  154.     end
  155. end
  156.  
  157. -- Hook Mouse clicks for instant kill reaction, no delays
  158. local function hookMouse()
  159.     local mouse = LocalPlayer:GetMouse()
  160.     mouse.Button1Down:Connect(function()
  161.         -- Play sound effect for mouse click kill
  162.         local sound = Instance.new("Sound", LocalPlayer.Character)
  163.         sound.SoundId = "rbxassetid://<SOUND_ASSET_ID>" -- Replace with desired sound ID
  164.         sound:Play()
  165.  
  166.         -- Instant kill on target mouse click
  167.         local target = mouse.Target
  168.         if target and target.Parent then
  169.             local hum = target.Parent:FindFirstChildOfClass("Humanoid")
  170.             if hum and hum.Health > 0 then instaKill(hum, target.Parent) end
  171.         end
  172.     end)
  173. end
  174.  
  175. -- Ultra fast killer parts spawn & touch kill setup
  176. local function setupKillerParts()
  177.     local basePos = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and
  178.                     LocalPlayer.Character.HumanoidRootPart.Position - Vector3.new(0,5,0) or Vector3.new(0,0,0)
  179.  
  180.     for i = 0, 60 do
  181.         local killerPart = Instance.new("Part")
  182.         killerPart.Size = Vector3.new(60,1,60)
  183.         killerPart.Anchored = true
  184.         killerPart.CanCollide = false
  185.         killerPart.Transparency = 1
  186.         killerPart.Position = basePos + Vector3.new(0, i * 5, 0)
  187.         killerPart.Parent = workspace
  188.         killerPart.Touched:Connect(function(part)
  189.             for _, p in pairs(Players:GetPlayers()) do
  190.                 if p ~= LocalPlayer and p.Character then
  191.                     local hrp = p.Character:FindFirstChild("HumanoidRootPart")
  192.                     local hum = p.Character:FindFirstChildOfClass("Humanoid")
  193.                     if hrp and hum and (part.Position - hrp.Position).Magnitude < 30 then
  194.                         instaKill(hum, p) -- Instant kill on touch
  195.                     end
  196.                 end
  197.             end
  198.         end)
  199.     end
  200. end
  201.  
  202. -- INIT
  203. local function Init()
  204.     local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  205.     local hum = char:FindFirstChildOfClass("Humanoid")
  206.  
  207.     hookHumanoidTakeDamage(hum)
  208.     hookHumanoidOtherMethods(hum)
  209.     hookBreakJoints(char)
  210.     hookTools()
  211.     hookMouse()
  212.     setupKillerParts()
  213. end
  214.  
  215. pcall(Init)
  216.  
  217. -- Output confirmation
  218. print("✅ ULTRA DAMAGE REPEL & INSTANT KILL SCRIPT ACTIVE - IMMEDIATE RESPONSE WITH NO COOLDOWN")
  219.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement