-- Universal Fast Run / Speed Script for Delta Executor -- Paste this directly into Delta and execute local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") -- Settings (easy to tweak) local WALK_SPEED = 100 -- Normal walking speed (default \~16) local RUN_SPEED = 250 -- Sprint / fast run speed local JUMP_POWER = 100 -- Higher jump (optional) -- Apply speeds humanoid.WalkSpeed = WALK_SPEED humanoid.JumpPower = JUMP_POWER -- Make it toggleable with "E" key (press E to toggle fast mode) local fastMode = false game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.KeyCode == Enum.KeyCode.E then fastMode = not fastMode if fastMode then humanoid.WalkSpeed = RUN_SPEED print("🚀 Fast Run ENABLED (Speed: " .. RUN_SPEED .. ")") else humanoid.WalkSpeed = WALK_SPEED print("🚶 Fast Run DISABLED") end end end) -- Re-apply on respawn player.CharacterAdded:Connect(function(newChar) character = newChar humanoid = newChar:WaitForChild("Humanoid") humanoid.WalkSpeed = fastMode and RUN_SPEED or WALK_SPEED humanoid.JumpPower = JUMP_POWER end) print("✅ Fast Run Script Loaded! Press E to toggle super speed.")