Status not Displaying [FIXED]

Hello, this script displays the status of the round and a timer, although when testing only the timer is displaying even when the status value is set to intermission. Any fix is appreciated.

RoundInfo.Status.Changed:Connect(function()
	if RoundInfo.Status.Value == "Intermission" then
		Status.Text = "Intermission"
	else
		Status.Text = "Survivors must Survive Ashes for the Full Round."
	end
end)

RoundInfo.Timer.Changed:Connect(function()
	local TimerValue = RoundInfo:FindFirstChild("Timer").Value
	local Seconds = TimerValue % 60
	local Minutes = (TimerValue - Seconds) / 60
	
	if Seconds < 10 then
		Seconds = "0" .. Seconds
	end
	Timer.Text = Minutes .. ":" .. Seconds
end)