Categories > Exploiting > Roblox >
[request] does anyone know a good anti-kick for roblox
Posted
i am trying to accomplish a certain exploit and i need an anti-kick for it to work. does anyone know a good one?
Replied
you can use this, it will only prevent from client script kicks tho.
local old
old = hookmetamethod(
game,
"__namecall",
function(self, ...)
local method = tostring(getnamecallmethod())
if string.lower(method) == "kick" then
return wait(9e9)
end
return old(self, ...)
end
)
Cancel
Post
https://cdn.discordapp.com/attachments/909012795851407390/927492917394821140/siggy.png
Replied
This is a slightly shorter version.
local old
old = hookmetamethod(game, "__namecall", function(...)
if getnamecallmethod() == "Kick" then
return wait(9e9)
end
return old(...)
end)
Cancel
Post
Trynna get back into C++, I kept picking it up and dropping it again over and over.
Exploits I use: Synapse-X, Script-Ware, DX9WARE.
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post