Facebook
From Toxic Hedgehog, 1 Year ago, written in Plain Text.
This paste is a reply to Re: Big Paintball 2021 hack from Smelly Duck - view diff
Embed
Download Paste or View Raw
Hits: 419
  1. local library = require(game:GetService(“ReplicatedStorage”).Framework.Library)
  2. local env = getsenv(game:GetService(“Players”).LocalPlayer.PlayerScripts.Scripts.Game[“First Person Controller”])
  3. local unlock_all = true
  4. –// Gun Bypass
  5. local old_fire = library.Network.Fire
  6. library.Network.Fire = newcclosure(function(self, …)
  7. local args = {…}
  8. if unlock_all and tostring(self) == “Request Respawn” then
  9. args[1] = “1”
  10. end
  11. return old_fire(self, unpack(args))
  12. end)
  13. local old_own = env.DoesOwnGun
  14. env.DoesOwnGun = function(…)
  15. return (unlock_all and true) or old_own(…)
  16. end
  17. –// Unlock All
  18. local old_own_gun = library.GunCmds.DoesOwnGun
  19. library.GunCmds.DoesOwnGun = newcclosure(function(self, …)
  20. return (unlock_all and true) or old_own_gun(self, …)
  21. end)
  22. –// Unlock Offsale
  23. for _, gun in next, library.Directory.Guns do
  24. gun[“offsale”] = false
  25. end

Replies to Re: Re: Big Paintball 2021 hack rss

Title Name Language When
Re: Re: Re: Big Paintball 2021 hack Cream Owl text 1 Year ago.