Advertisement
SoldierJoao_RBLX

FE Walkspeed

Nov 21st, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. -- Made by FalconPunch: https://v3rmillion.net/member.php?action=profile&uid=415071
  2. _G.HackedWalkSpeed = 100 --Change your speed here
  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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement