Why does it say I am not in the police team if I am, Help me please. Whats the problem?
I tried with citizen team and that worked and then I switched to the police team but then it still says I am not a police.
Here is the localscript:
01 | local player = game.Players.LocalPlayer |
02 | local gui = player:FindFirstChild( "PlayerGui" ):FindFirstChild( "CarUI" ) |
03 | local button = gui:FindFirstChild( "ButtonsFram" ):FindFirstChild( "CopCar" ) |
04 | local CivCarFrame = gui:FindFirstChild( "CivCarsFrame" ) |
05 | local CopCarFrame = gui:FindFirstChild( "CopCarsFrame" ) |
08 | button.MouseButton 1 Click:connect( function () |
09 | if player.TeamColor = = "Cyan" then |
10 | CivCarFrame.Visible = false |
11 | CopCarFrame.Visible = true |
13 | button.Text = "You are not police!" |
15 | button.Text = "Police Cars" |