Advertisement
MousieBobot

Shift 2 Run Script - Area Game

Sep 16th, 2023
517
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.90 KB | None | 0 0
  1. -- Services
  2. local inputService = game:GetService("UserInputService")
  3. local playerService = game:GetService("Players")
  4.  
  5. -- Objects
  6. local plr = playerService.LocalPlayer
  7. local char = plr.Character or plr.CharacterAdded:wait()
  8.  
  9. local normalSpeed = 18 -- The player's walking speed (Roblox default is 16)
  10. local sprintSpeed = 26 -- The player's speed while sprinting
  11. local sprinting = false
  12.  
  13. inputService.InputBegan:Connect(function (key)
  14.     if key.KeyCode == Enum.KeyCode.LeftShift or key.KeyCode == Enum.KeyCode.RightShift then
  15.         running = true
  16.         if char:FindFirstChild("Humanoid") then
  17.             char.Humanoid.WalkSpeed = sprintSpeed
  18.         end
  19.     end
  20. end)
  21.  
  22. inputService.InputEnded:Connect(function (key)
  23.     if key.KeyCode == Enum.KeyCode.LeftShift or key.KeyCode == Enum.KeyCode.RightShift then
  24.         running = false
  25.         if char:FindFirstChild("Humanoid") then
  26.             char.Humanoid.WalkSpeed = normalSpeed
  27.         end
  28.     end
  29. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement