RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"a script that makes the user dash forward, the script has a section for me to"
-- Local script local UserInputService = game:GetService("UserInputService") local Players = game:GetService("Players") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local dashKey = Enum.KeyCode.E -- Change this to the desired key for dashing local dashSpeed = 50 -- Change this to the desired dash speed local dashDuration = 0.5 -- Change this to the desired dash duration local function onInputBegan(input, gameProcessedEvent) if input.KeyCode == dashKey and not gameProcessedEvent then local humanoid = character:FindFirstChild("Humanoid") if humanoid then local originalWalkSpeed = humanoid.WalkSpeed humanoid.WalkSpeed = dashSpeed wait(dashDuration) humanoid.WalkSpeed = originalWalkSpeed end end end UserInputService.InputBegan:Connect(onInputBegan)