(EDIT:Really still didn't find it!BTW If I get a 'Leader Board' script,nothing changes at all!I change the money amount in the script its still on the same amount!E.G I have normally 20 money and when I get a 'Leader Board' script and set it to 10,000,000 , I still have 20 money please help!)
(EDIT:SOLVED!!!Found it in 'ServerScriptService' !!! Thank You everyone who replied!)
Where can the 'Leader Board' be located?
Thanks!
Leaderboards are models named leaderboard that are located inside each player instance, and they contain values which are individual to each player. These values are displayed on the leaderboard for everyone, and you can alter their names to the appropriate titles. You can see this leaderboard structure here.
This wiki page also contains information on how to create leaderboards. For example, if you wanted to create a leaderboard valued called Money, a script like this could help:
game.Players.PlayerAdded:Connect(function(plr) --detect when player joins local leaderboard = Instance.new("Model") --create leaderboard leaderboard.Name = "leaderboard" --name leaderboard local money = Instance.new("NumberValue") --add money stat money.Name = "Money" --name money stat money.Parent = leaderboard --put money stat inside leaderboard model leaderboard.Parent = plr --put leaderboard model inside player end)