I want the GUI to be able to countdown.
The issue is, for some reason my script won’t work and I have no clue why.
Nothing on the DevForum has helped me, nor Youtube.n
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
SERVER SCRIPT
--
local status = game:GetService("ReplicatedStorage"):FindFirstChild("Status")
local interTime = 10
while true do
status.Value = "Intermission"..interTime --Status is a ReplicatedStorage String Value
interTime = interTime - 1
wait(1)
if interTime <= 0 then
break
end
end
status.Value = "Round Starting.."
Local Script inside of TextLabel
local status = game:GetService(“ReplicatedStorage”):FindFirstChild(“Status”)
status.Changed:Connect(function()
script.Parent.Text = status.Value
end)