MaxproGlitcher

Anti Kick

Mar 17th, 2026
132
0
Never
7
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. --// Anti Kick (Local Start)
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4.  
  5. -- Vérif support exploit
  6. if not hookmetamethod then
  7. warn("Exploit incompatible (hookmetamethod manquant)")
  8. else
  9. local oldIndex
  10. local oldNamecall
  11. local oldKick
  12.  
  13. -- Hook direct Kick (si dispo)
  14. if hookfunction then
  15. oldKick = hookfunction(LocalPlayer.Kick, function()
  16. return
  17. end)
  18. end
  19.  
  20. -- Bloque LocalPlayer.Kick (index)
  21. oldIndex = hookmetamethod(game, "__index", newcclosure(function(self, key)
  22. if self == LocalPlayer and tostring(key):lower() == "kick" then
  23. return function()
  24. return
  25. end
  26. end
  27. return oldIndex(self, key)
  28. end))
  29.  
  30. -- Bloque :Kick()
  31. oldNamecall = hookmetamethod(game, "__namecall", newcclosure(function(self, ...)
  32. local method = getnamecallmethod()
  33. if self == LocalPlayer and method and method:lower() == "kick" then
  34. return
  35. end
  36. return oldNamecall(self, ...)
  37. end))
  38. end
  39.  
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • # text 0.18 KB | 0 0
    1. I know this guy gonna ban my comment well it does work some of the games but there a particular game it doesn't work crystalis boss fight it cannot handle stop a advanced kicking system
  • User was banned
Add Comment
Please, Sign In to add comment