Leaderboard Help

Hey everyone, one of the school groups I’ve been working on has had trouble with a leaderboard, all the group rank scripts are setup to spawn to a specific team according to rank, yet when we spawn it spawns us in the “neutral” team on the leaderboard. Can anyone help?

(Here’s an example)
https://gyazo.com/87f53a954880fa74b0b559870a9b84d4

Do you need help programming a leaderboard for your game? Do you have a gui that the player selects what team to be on. Please share your code.

1 Like

player has a property called neutral

if you want to disable it then do this

for _, Player in pairs(game.Players:GetPlayers()) do
    Player.Neutral = false
end

also set them to a team too

1 Like