Hey guys, so am currently trying to make a timer but unfortunately its not working. No errors in the console either
Here’s the client sided script (in workspace):
local Countdown = game.ReplicatedStorage:WaitForChild("Time")
local TextLabel = game.StarterGui.Timer.Timer
Countdown.Changed:Connect(function()
TextLabel.Text = Countdown.Value
end)
Server sided script (ServerScriptService):
local Countdown = game.ReplicatedStorage:WaitForChild("Countdown")
while Countdown.Value > 0 do
Countdown.Value = Countdown.Value - 1
wait(1)
end
In the TextLabel there is no time and its just written label (tested many times):