local UIS = game:GetService("UserInputService") local player = game.Players.LocalPlayer UIS.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.E then player.Character.Humanoid.WalkSpeed = 64 end if input.KeyCode == Enum.KeyCode.Q then player.Character.Humanoid.WalkSpeed = 10 end end)