Advertisement
koreanhackerman

Walkspeed Changer roblox script

Nov 30th, 2019
44,590
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 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 = 100
  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 :)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement