Advertisement
SM110866

MaingameScriptFFA

Mar 15th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. local GameManager = require(script.GameManager)
  2.  
  3. GameManager:Initialize()
  4.  
  5. while true do
  6.     repeat
  7.         GameManager:RunIntermission()
  8.     until GameManager:GameReady()
  9.    
  10.     GameManager:StopIntermission()
  11.     GameManager:StartRound()
  12.    
  13.     repeat
  14.         GameManager:Update()
  15.         wait()
  16.     until GameManager:RoundOver()
  17.    
  18.     GameManager:RoundCleanup()
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement