local player = game.Players.LocalPlayer local character = player.Character local humanoid = character.Humanoid local mouse = player:GetMouse() local origSpeed = humanoid.WalkSpeed local runSpeed = 100 --modify this value to be the speed you want when running
mouse.KeyDown:connect(function(key)
if key:lower() == "LeftShift" then
humanoid.WalkSpeed = runSpeed
end
end)
mouse.KeyUp:connect(function(key) if key:lower() == "LeftShift" then humanoid.WalkSpeed = origSpeed end end)
I want to make it so when I press shift I start running but idk the shift key in lua