Text
Text
-- When the countdown finishes, show "Time's Up!" with a red color and fade out
effect
timerLabel.Text = "00:00"
local endColorTween = TweenService:Create(timerLabel, TweenInfo.new(1),
{TextColor3 = Color3.fromRGB(255, 0, 0)})
endColorTween:Play()
end