ProfessorPuddle

Roblox MM2 Script - Walkspeed

Dec 31st, 2020 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. -- This walkspeed script is the same as others , but does not change to default speed when you reset. ENJOY !
  2. _G.HackedWalkSpeed = 27
  3.  
  4. local Plrs = game:GetService("Players")
  5.  
  6. local MyPlr = Plrs.LocalPlayer
  7. local MyChar = MyPlr.Character
  8.  
  9. if MyChar then
  10. local Hum = MyChar.Humanoid
  11. Hum.Changed:connect(function()
  12. Hum.WalkSpeed = _G.HackedWalkSpeed
  13. end)
  14. Hum.WalkSpeed = _G.HackedWalkSpeed
  15. end
  16.  
  17.  
  18. MyPlr.CharacterAdded:connect(function(Char)
  19. MyChar = Char
  20. repeat wait() until Char:FindFirstChild("Humanoid")
  21. local Hum = Char.Humanoid
  22. Hum.Changed:connect(function()
  23. Hum.WalkSpeed = _G.HackedWalkSpeed
  24. end)
  25. Hum.WalkSpeed = _G.HackedWalkSpeed
  26. end)
  27.  
  28. -- end of script :)
Add Comment
Please, Sign In to add comment