#hellp

1 messages · Page 1 of 1 (latest)

cinder citrus
#
local ServerStorage = game:GetService("ServerStorage")

local valuesFolder = ServerStorage:WaitForChild("Values")
local gameValue = valuesFolder:WaitForChild("GameValue")
local intValues = gameValue:WaitForChild("IntValue")
local boolValues = gameValue:WaitForChild("BoolValue")
local roundValues = intValues:WaitForChild("RoundValues")

local introTime = roundValues:WaitForChild("IntroductionValue")
local durningMatch = boolValues:WaitForChild("DurningMatchValue")

durningMatch.Value = false
print("Starting Intro")

local startTime = tick()
local endTime = startTime + introTime.Value

while tick() < endTime do
    local remaining = math.ceil(endTime - tick())
    if remaining < 0 then remaining = 0 end
    introTime.Value = remaining
    print("⏳ Match starting in " .. introTime.Value .. " seconds...")
    task.wait(1)
end

if introTime.Value == 0 then
    task.wait(1)
    durningMatch.Value = true
    print("Match Started")
end
```*
tawny breach
#

Hold on gimme a sec to read your mind so I know what's going on

cinder citrus
#

?

eternal kernel
cinder citrus
#

countdown value

#

but it works now

#

i fix it