RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a sprinting function to the player"
-- local script local Player = game:GetService('Players').LocalPlayer local sprinting = false local function sprint() if sprinting then sprinting = false Player.Character.Humanoid.WalkSpeed = 16 else sprinting = true Player.Character.Humanoid.WalkSpeed = 50 end end game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessedEvent) if input.KeyCode == Enum.KeyCode.LeftShift and not gameProcessedEvent then sprint() end end)