Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. local reg = debug.getregistry or getreg or getregistry;
  2. local ups = debug.getupvalues or getupvalues;
  3.  
  4. for i,v in next, reg() do
  5. if type(v) == 'function' then
  6. local s, yo = pcall(function() return ups(v) end)
  7. if yo and type(yo) == 'table' then
  8. if yo.Attributes then
  9. local hi = yo.Attributes;
  10. hi.freethrow = math.huge;
  11. hi.postscorer = math.huge;
  12. hi.ballspeed = 83;
  13. hi.jump = 50;
  14. hi.steal = math.huge;
  15. hi.shotcontest = 0;
  16. hi["2pointer"] = math.huge;
  17. hi["3pointer"] = math.huge;
  18. hi.passing = math.huge;
  19. hi.layup = 90;
  20. hi.strength = math.huge;
  21. hi.dunk = math.huge;
  22. hi.speed = 83;
  23. hi.handles = math.huge;
  24. hi.movingshot = math.huge;
  25. hi.defense = math.huge;
  26. hi.stamina = math.huge;
  27. end;
  28. end;
  29. end;
  30. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement