Advertisement
ROBLOX_SCRIPT_SHARE

DUNKING SIMULATOR

Feb 16th, 2022
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. local walkspeed = 24 -- edit this number for walkspeed (default is 16)
  2.  
  3. local MainModule = require(game:GetService("ReplicatedStorage").Shootball)
  4.  
  5. local rs = game:GetService("RunService")
  6.  
  7. local hookfunc = MainModule.Shoot
  8.  
  9. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = walkspeed
  10.  
  11. pcall(function()
  12. while true do
  13. rs.Heartbeat:Wait()
  14. local slider = game.Players.LocalPlayer.PlayerGui.Slider.Frame.Slider
  15. slider.Position = UDim2.new(0.5, slider.Position.Y)
  16. end
  17. end)
  18.  
  19. local oldFunction
  20. oldFunction = hookfunction(hookfunc, function(...)
  21. local args = {...}
  22. print("before", ...)
  23. args[3] = 0
  24. print("after", unpack(args))
  25. return oldFunction(args)
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement