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

how would i make a leaderstat not show up on the leaderboard?

Asked by 3 years ago
Edited 3 years ago

basically im making a gameshow and i want a points system but i don't want it to show on the leaderboard instead im making stands and on a textLabel (not gui) it shows there points to everybody (there are 3 contestants)

```game.Players.PlayerAdded:Connect(function(plr)

local ls = Instance.new("Folder", plr) ls.Name = "points"

local points = Instance.new("IntValue") points.Name = "Points" points.Parent = ls end)```

0
You may want to add code to your question as it will get flagged wolftamer894 50 — 3y
0
You will need SurfaceGuis. Also, based on your code, the 'Points' value shouldn't show up on the leaderboard. appxritixn 2235 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

game.Players.PlayerAdded:Connect(function(plr)

local ls = Instance.new("Folder", plr) ls.Name = "points"

local points = Instance.new("IntValue") points.Name = "Points" points.Parent = ls end)

thats the code to make it not show on leaderboard but i need it to show on a text label visible to everybody

Ad

Answer this question