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)```
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