How to hide stats on player leaderboard

Hello!

I need some help with hiding a players stats from the whole server. For example, in games, such as simulators, you can see how much points and coins a player has, but on some games they have leaderstats, but it only shows the players names on the leaderboard and not the stats.

How can I do this?

Anything helps, thanks.

1 Like

just make the IntValue’s parent not the leaderstats folder

for example:

game.Players.PlayerAdded:Connect(function(Player)
	local Leaderstats = Instance.new("Folder")
	Leaderstats.Name = "leaderstats"
	Leaderstats.Parent = Player

	local Money = Instance.new("IntValue")
	Money.Name = "Money"
	Money.Parent = Leaderstats
	Money.Value = 100

    local Gems = Instance.new("IntValue")
	Gems.Name = "Gems"
	Gems.Parent = Player
	Gems.Value = 100

Money would show up on the leaderstats, but Gems wouldn’t.

2 Likes