Roblox | How to find and disable Anti Cheats in games.

Описание к видео Roblox | How to find and disable Anti Cheats in games.

A simple tutorial on how to bypass anti cheats on certain roblox games. This includes on how to search for them.

Example script from the video: (HASTEBIN was remove)

Script (updated 11/22/21) (new hookmetamethod):

local eventbypass

eventbypass = hookmetamethod(game, "__namecall", function(self, ...)
local method = getnamecallmethod()
local args = {...}

if not checkcaller() and self.Name == "Anti_Cheat_Remote" and method == "FireServer" then
print("Anti Cheat remote was called and blocked.")
return wait(9e9); -- do nothing if called
end

return eventbypass(self, ...)
end)

Комментарии

Информация по комментариям в разработке