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 2 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 2 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 — 2y
Ad
Log in to vote
0
Answered by 2 years ago

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

Here's some code if you want.

local Player = game.Players.LocalPlayer

local DataFolder = Instance.new("Folder")
DataFolder.Name = "DataFolder"
DataFolder.Parent = Player

local DefaultValue = nil -- Change this to a default number

repeat wait(0) until DataFolder

-- Insert Values Here With The Parent Of DataFolder

Answer this question