when i make the leaderboard script the stats dont show in the leaderboard, how do i make them show?
Put this inside a script on the workspace.
game.Players.PlayerAdded:connect(function(Player) print(Player.Name..(" Connected!")) local Leaderstats = Instance.new("IntValue", Player) Leaderstats .Name = "Leaderstats " local Coin = Instance.new("IntValue", Leaderstats) Coin.Name = "Coin" Coin.Value= 100 end)
https://www.youtube.com/watch?v=4uB9Ch8Od2c
The video should give you some advice on how the work the leaderstats.