How can i make a custom leaderboard?
function onPlayerEntered(newPlayer) -- when player enters gets gives leaderboard local stats = Instance.new("IntValue") stats.Name = "leaderstats" local xp = Instance.new("IntValue") -- change xp to the name of the want you want it to be make sure there are no spaces and change xp.value = " what you want the player to start with" xp.Name = "XP" xp.Value = 0 xp.Parent = stats
easy
I guess that @above would work but I searched Leaderboard on the wiki and it tells you how to do it.