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

Can You Make A Hidden Leaderboard Value?

Asked by 3 years ago

Guys, I was wondering can u make a hidden leaderboard value that doest show on the leader board like lets say.... "Upgrade Level", can u make it so it doesnt show next to the other leaderboard values such as Coins Or Wins and what not?

2 answers

Log in to vote
0
Answered by 3 years ago

Hello! Yes, you can! You only have to create a folder with another name, for example, data. Then store the values in that folder. No values will be shown on the leaderboard.

0
What a troll. You've got to be joking me right? Thats To Much Work. NotConnorRandumb 22 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

Just Make Sure The Main Data Folder is not named "leaderstats"

Here's some code if you want.

01local Player = game.Players.LocalPlayer
02 
03local DataFolder = Instance.new("Folder")
04DataFolder.Name = "DataFolder"
05DataFolder.Parent = Player
06 
07local DefaultValue = nil -- Change this to a default number
08 
09repeat wait(0) until DataFolder
10 
11-- Insert Values Here With The Parent Of DataFolder

Answer this question