pastebin shirft -- Place this script inside a LocalScript in StarterPlayerScripts local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local userInputService = game:GetService("UserInputService") local isSprinting = false local walkSpeed = humanoid.WalkSpeed local sprintSpeed = 2 * walkSpeed -- You can adjust the sprint speed multiplier here pastebin shirft How to use it? pastebin shirft local function onKeyPress(input) if input.KeyCode == Enum.KeyCode.LeftShift then isSprinting = true humanoid.WalkSpeed = sprintSpeed end end local function onKeyRelease(input) if input.KeyCode == Enum.KeyCode.LeftShift then isSprinting = false pastebin shirft How to dowload it? pastebin shirft humanoid.WalkSpeed = walkSpeed end end userInputService.InputBegan:Connect(onKeyPress) userInputService.InputEnded:Connect(onKeyRelease) pastebin shirft