Advertisement
puilt9y

puilt9y project slayers scripts

Jul 17th, 2022
6,457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. local oldindex;
  2. local oldnamecall;
  3. local mod = require(game:GetService("ReplicatedStorage").Modules.Global["Random_Clan_Picker"])
  4.  
  5. oldindex = hookmetamethod(game, "__index", function(i, v)
  6. if tostring(i) == "Spins" then
  7. i.Value = 9e9
  8. end
  9.  
  10. return oldindex(i, v)
  11. end)
  12.  
  13. oldnamecall = hookmetamethod(game, "__namecall", function(self, ...)
  14. local args = { ... }
  15. local method = getnamecallmethod()
  16.  
  17. if method == "InvokeServer" and self.Name == "Handle_Initiate_S_" and args[1] == "check_can_spin" then
  18. return true, mod.pick()
  19. end
  20.  
  21. return oldnamecall(self, ...)
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement