Advertisement
pa1nx9

Fling Things And People BETTER REACH AND INSANE THROW

Sep 16th, 2021
1,635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. --[[ Variables ]]
  2. local PS = game:GetService("Players")
  3. local LocalPlayer = PS.LocalPlayer
  4. local GameMt = getrawmetatable(game)
  5. setreadonly(GameMt, false)
  6. local OldIndex = GameMt.__index
  7.  
  8. GameMt.__index = function(Self, Key)
  9. if not checkcaller() and Self then
  10. if Key == "WalkSpeed" then
  11. return 16
  12. elseif Key == "JumpPower" then
  13. return 24
  14. end
  15. end
  16.  
  17. return OldIndex(Self, Key)
  18. end
  19.  
  20. LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid").WalkSpeed = 28
  21.  
  22. function Int()
  23. for i,v in pairs(debug.getregistry()) do
  24.  
  25. if type(v) == "function" and not is_synapse_function(v) then
  26. local Values = debug.getupvalues(v)
  27. for a,b in pairs(Values) do
  28. if type(b) == "number" and b == 20 then
  29. debug.setupvalue(v, a, 30)
  30. end
  31. end
  32.  
  33. local Constants = debug.getconstants(v)
  34. for Number,Value in pairs(Constants) do
  35. if type(Value) == "number" then
  36. if Value == 100 then
  37. debug.setconstant(v, Number, 1000)
  38. print("Set new Magnitude limit!")
  39. end
  40. if Value == 750 then
  41. debug.setconstant(v, Number, 1350)
  42. print("Set new throw limit!")
  43. end
  44. end
  45. end
  46. end
  47.  
  48. end
  49.  
  50. spawn(function()
  51. while wait() do
  52. if LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid") then
  53. LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid").JumpPower = 24
  54. LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid").WalkSpeed = 28
  55. elseif not LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid") then
  56. break
  57. end
  58. end
  59. end)
  60.  
  61. end
  62.  
  63. Int()
  64.  
  65. LocalPlayer.CharacterAdded:Connect(function()
  66. repeat wait() until LocalPlayer.Character
  67. repeat wait() until LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid")
  68. repeat wait() until LocalPlayer.Character:FindFirstChild("GrabbingScript")
  69. Int()
  70. end)
  71.  
  72. print("Better reach and faster speed loaded!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement