I put it into "StarterGui" but then realised the time would not be exactly the same. I would like it to be exactly the same. Suggestions?
Script 1 in Workspace
local time = Instance.new("IntValue", workspace) time.Name = "Timer" wait(.5) for i = 5, 0, -1 do --Wait 5 seconds, end at 0 seconds, take away one second per second wait(1) workspace.Timer.Value = i end --Chunk
Script 2 in the Gui
local textbox = script.Parent local text = workspace.Timer while wait() do textbox.Text = "Round will begin in "..text.Value.." seconds." end
Locked by EzraNehemiah_TF2, Redbullusa, and BlueTaslem
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?