Roblox Script - Project Slayers [Stop webhooks being sent]

 


This script will stop webhooks being sent to the game devs
This is best used with auto farms



Script:

local hook

hook = hookmetamethod(game, "__namecall", function(self, ...)

   args = {...}


   if getnamecallmethod() == "FireServer" and #args == 2 and type(args[1]) == "boolean" then

       return task.wait(9e9)

   end


   return hook(self, ...)

end)




Previous Post Next Post