Advertisement
Upscalefanatic3

(Roblox) Roblox's Got Talent Anticheat Script

Mar 30th, 2020
2,215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local mt = getrawmetatable(game)
  2. local old = mt.__namecall
  3. local setreadonly = setreadonly or make_writeable
  4.  
  5. setreadonly(mt, false)
  6.  
  7. mt.__namecall = newcclosure(function(self, ...)
  8. local args = {...}
  9. local method = getnamecallmethod()
  10.  
  11. if method == "Kick" then
  12. return nil
  13. end
  14.  
  15. return old(self, ...)
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement