eren2481

MobileGarage

Mar 25th, 2020 (edited)
2,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. local mt = getrawmetatable(game)
  2.  
  3. local old_namecall = mt.__namecall
  4.  
  5. setreadonly(mt,false)
  6.  
  7. mt.__namecall = newcclosure(function(s,...)
  8. local Args = {...}
  9. if Args[#Args] == "UserOwnsGamePassAsync" then
  10. print("checked gamepass")
  11. return true
  12. end
  13. return old_namecall(s,...)
  14. end)
Add Comment
Please, Sign In to add comment