Hello, this function handles the text on a text label although it’s a bit choppy. I’m looking to add an animation similar to the example below although I’m not sure on what’s the best way of doing it, I’m considering Tweens but would like to know about any better alternative if any first.
RoundInfo.Timer:GetPropertyChangedSignal("Value"):Connect(function()
if RoundInfo.Status.Value == "Intermission" then
Status.Text = "The Round Will Begin In "..RoundInfo.Timer.Value
else
Status.Text = "A Round Is In Progress."
end
end)