Advertisement
aniwat1201

Shift Speed

Dec 1st, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. repeat wait() until game.Players.LocalPlayer.Character
  2.  
  3. local Context = game:GetService("ContextActionService")
  4.  
  5.  
  6.  
  7. function SpeedUP(NameFunction,State)
  8. if State == Enum.UserInputState.Begin then
  9.  
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
  11. else
  12. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  13. end
  14. end
  15.  
  16.  
  17. local SpeedBoost = Context:BindAction("Speed",SpeedUP,true,Enum.KeyCode.LeftShift)
  18. Context:SetPosition("Speed",UDim2.new(0.1, 0,0.1, 0))
  19. Context:SetImage("Speed","rbxassetid://0000")
  20.  
  21. --By TuLike TTZ
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement