Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// Anti Kick (Local Start)
- local Players = game:GetService("Players")
- local LocalPlayer = Players.LocalPlayer
- -- Vérif support exploit
- if not hookmetamethod then
- warn("Exploit incompatible (hookmetamethod manquant)")
- else
- local oldIndex
- local oldNamecall
- local oldKick
- -- Hook direct Kick (si dispo)
- if hookfunction then
- oldKick = hookfunction(LocalPlayer.Kick, function()
- return
- end)
- end
- -- Bloque LocalPlayer.Kick (index)
- oldIndex = hookmetamethod(game, "__index", newcclosure(function(self, key)
- if self == LocalPlayer and tostring(key):lower() == "kick" then
- return function()
- return
- end
- end
- return oldIndex(self, key)
- end))
- -- Bloque :Kick()
- oldNamecall = hookmetamethod(game, "__namecall", newcclosure(function(self, ...)
- local method = getnamecallmethod()
- if self == LocalPlayer and method and method:lower() == "kick" then
- return
- end
- return oldNamecall(self, ...)
- end))
- end
Advertisement
Comments
-
- 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
Add Comment
Please, Sign In to add comment