if anyone knows please leave a reply! :) thanks
This is very easy.
Heres the script.
01 | -- script in ServerScriptService |
02 |
03 | game.Players.PlayerAdded:Connect( function (plr) |
04 | local Stats = Instance.new( "Folder" ) |
05 | Stats.Parent = plr |
06 | Stats.Name = "Stats" |
07 | local Money = Instance.new( "NumberValue" ) |
08 | Money.Parent = Stats |
09 | Money.Name = "Money" |
10 | Money.Value = 4093204324 |
**In what I think, If you don't name the variable leaderstats, it would not show on the leaderboard. That is what happened to me a few weeks ago when I wrote Stats instead of leaderstats like I usually do. **
Hope this helped. xD
-PhotonLightning