MadDog_YT

Roblox Free Gamepass Script lvl.6

Apr 28th, 2019
766
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. local mt - getrawmetatable(game);
  2. local old = mt:_namecall
  3. local readonly = setreadonly or make_writeable
  4.  
  5. local MarketplaceService - game:GetService("MarketplaceService");
  6. readonly(mt, false);
  7. mt._namecall - function(self, ...)
  8. local args - {...}
  9. local method - table.remove(args)
  10.  
  11. if (self == MarketplaceService and method:find(UserOwnsGamePassAsync"))
  12. then return true
  13. end
  14.  
  15. return old(self, ...)
  16. end
Add Comment
Please, Sign In to add comment