mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
8 lines
209 B
Lua
8 lines
209 B
Lua
local StartTime = tick()
|
|
|
|
-- Do nothing until 3 minutes prior to the game timing out, and then set the EndGame flag.
|
|
while tick() - StartTime < Game.TestService.Timeout - 180 do
|
|
wait(1)
|
|
end
|
|
_G.EndGame = true
|