Categories > Exploiting > Roblox >

[request] does anyone know a good anti-kick for roblox

Posts: 1

Threads: 1

Joined: Jan, 2022

Reputation: 0

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?

  • 0

hookfunction

fake wumat

vip

Posts: 119

Threads: 15

Joined: Aug, 2021

Reputation: 18

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
)
  • 0

                                                                        https://cdn.discordapp.com/attachments/909012795851407390/927492917394821140/siggy.png

Posts: 1

Threads: 0

Joined: Jan, 2022

Reputation: 0

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)
  • 0

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 )