local RUN = game:GetService("UserInputService")
local player = game:GetService("Players").LocalPlayer
local char = player.Character or player.CharacterAdded:Wait()
RUN.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == Enum.KeyCode.W then
while input do
task.wait(1)
char.Humanoid.WalkSpeed = char.Humanoid.WalkSpeed + 50
end
end
end)
** You are now Level 1! **