-- Начальная скорость local baseSpeed = 16 local boostSpeed = 50 local key = "e" -- клавиша для активации game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode[key:upper()] then if game.Players.LocalPlayer.Character then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = boostSpeed end end end) game:GetService("UserInputService").InputEnded:Connect(function(input) if input.KeyCode == Enum.KeyCode[key:upper()] then if game.Players.LocalPlayer.Character then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = baseSpeed end end end)