Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Leaderboard not coming up showing "Money"?

Asked by
FiredDusk 1466 Moderation Voter
9 years ago

This is not even showing me a leaderboard at all! I want it to say "Money" at the top.

game.Players.PlayerAdded:connect(function(p)
    local stats = Instance.new("IntValue")
    stats.Name = "leaderstats"
    stats.Parent = p

    local money = Instance.new("IntValue")
    money.Name = "Money"
    money.Value = 2000 --Amount to start with
    money.Parent = stats

end)

Answer this question