I'm trying to enable a script whenever a character loads but it never happens, what's the problem? Its in the serverscriptservice
1 | game.Players.PlayerAdded:Connect( function (Player) |
2 | Player.CharacterAppearanceLoaded:Connect( function (Character) |
3 | local DropSystem = Character:WaitForChild( "DropSystem" ) |
4 |
5 | if Player.Team.Name = = not "Selection" then |
6 | DropSystem.Parent.Disabled = false |
7 | end |
8 | end ) |
9 | end ) |
I don't think that "not" at line 5 should be there, instead you should change it with this:
1 | game.Players.PlayerAdded:Connect( function (Player) |
2 | Player.CharacterAppearanceLoaded:Connect( function (Character) |
3 | local DropSystem = Character:WaitForChild( "DropSystem" ) |
4 |
5 | if Player.Team.Name ~ = "Selection" then |
6 | DropSystem.Parent.Disabled = false |
7 | end |
8 | end ) |
9 | end ) |
if you want the if statement to check if the player's team name is not "Selection". But if you want the if statement to check is the player's team name is "Selection" just change the symbol '~' to '='.