001 | -- Services |
002 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
003 | local serverStorage = game:GetService( "ServerStorage" ) |
004 |
005 | local status = replicatedStorage.Values.Status |
006 |
007 | local timer = replicatedStorage.Values.Timer |
008 |
009 | local playersLeft = replicatedStorage.Values.PlayersLeft |
010 |
011 | local hitbox = game.ServerStorage:WaitForChild( "Hitbox" ) |
012 |
013 | -- Config |
014 | local playersToStart = 2 |
015 |