Advertisement
Guest User

FE WalkSpeed

a guest
Apr 4th, 2020
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. -- Variable --
  2. local Players = game:GetService('Players')
  3. local LP = Players.LocalPlayer
  4. local Humanoid = LP.Character:WaitForChild('Humanoid')
  5.  
  6. -- Code --
  7. _G.on = Config.Start
  8.  
  9. while _G.on and wait() do
  10.     if _G.on == true then
  11.         Humanoid.WalkSpeed = Config.Value
  12.     elseif _G.on == false then
  13.         Humanoid.WalkSpeed = 16
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement