Advertisement
CAT_SUS

Bypass CoreGui

Jun 16th, 2023
6,852
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local mt = getrawmetatable(game)
  2. setreadonly(mt, false)
  3. local old = mt.__namecall
  4.  
  5. mt.__namecall = newcclosure(function(self, ...)
  6.     local method = getnamecallmethod()
  7.     if method == "FireServer" and self.Name == "RemoteEvent" then
  8.         return wait(9e9)
  9.     end
  10.     return old(self, ...)
  11. end)
  12.  
  13. hookfunction(game.ContentProvider.PreloadAsync,function() return 'The Mimic' end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement