Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Players can't see what teams other players are in on the leaderboard?

Asked by 3 years ago

In my game, I have three teams and all players start off in the same team (White) until they choose in the intro between the other two teams (Red and Pink). The problem is when I change all the players to either red or pink, for player 1 it still says that the other players are in the white team instead of showing whether they are red or pink. It's the same for the other players too. They can see what team they are in themselves but everyone else stays in the white team even though they actually aren't. I'm not sure why this is happening. I apologize if this is hard to understand. Thank you in advance for your help.

1 answer

Log in to vote
0
Answered by 3 years ago

You changed the team on the client, the server never saw you changed it so they stayed on the white team. Change it through the server and it should work :D

0
Thanks. Although all the players now have the word player above their head. Is there a way to get rid of that? Icecube_376 9 — 3y
0
Yeah, that is by default. You need to make a script that is inside server script service. It should go like this: game.Players.PlayerAdded:Connect(function(plr) plr.Character.Humanoid.HumanoidDisplayType = "None" end) JailBreaker_13 350 — 3y
0
It didn't seem to work for some reason Icecube_376 9 — 3y
0
I figured it out. Thank you so much for your help. I'm pretty new to all this. Icecube_376 9 — 3y
0
Np. JailBreaker_13 350 — 3y
Ad

Answer this question