local speedPart = script.Parent-- Set a variable for boosted speed powerlocal SPEEED_POWER = 200local function speed(otherPart) local partParent = otherPart.Parent local humanoid = partParent:FindFirstChildWhichIsA("Humanoid") if humanoid then local currentSpeed = humanoid.WalkSpeed if currentSpeed < SPEEED_POWER then humanoid.WalkSpeed = SPEEED_POWER wait(10) humanoid.WalkSpeed = currentSpeed end endendspeedPart.Touched:Connect(speed)local SPEEED_POWER = 200