brandblox

Pacifico 2 Script

Aug 16th, 2020
1,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local met = getrawmetatable(game)
  2. setreadonly(met,false)
  3. local old = met.__namecall
  4. met.__namecall = function(t,...)
  5. local args = {...}
  6. if(getnamecallmethod()=="UserOwnsGamePassAsync") then
  7. print("Gamepass!")
  8. return true
  9. end
  10. if(tostring(t) == "HandleUI") then
  11. print("spawn modified")
  12. return old(t,args[1],"civ",args[3],args[4])
  13. end
  14. return old(t,...)
  15. end
  16.  
Add Comment
Please, Sign In to add comment