Players Needed Problem?
01 | REnd = script.Parent.RoundEnd |
02 | RScript = script.Parent.RoundScript |
05 | if game.Players.NumPlayers < 3 then |
06 | MSG = game.Workspace:FindFirstChild( 'PlayersNeeded' ) |
08 | local m = Instance.new( "Message" ) |
09 | m.Parent = game.Workspace |
10 | m.Name = 'PlayersNeeded' |
11 | m.Text = "At least 3 Players are needed to play the Game!" |
14 | RScript.Disabled = true |
15 | RScript.RoundStart.Value = false |
18 | print ( 'Message Already Exists!' ) |
21 | RScript.Disabled = true |
22 | RScript.RoundStart.Value = false |
24 | game.Players.NumPlayers > 2 then |
26 | RScript.Disabled = false |
27 | RScript.RoundStart.Value = true |
28 | msg = game.Workspace:FindFirstChild( 'PlayersNeeded' ) |
I tested in Studio, Ribbon Bar lets u insert Players so I did that and after I inserted them, the print() stopped but the msg didn't Delete... and this didn't Enable the other Script for me... :/