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

How to add letters to Leaderboards? [closed]

Asked by 9 years ago

This question already has an answer here:

How do I make a Miners Haven leaderboard?

So, I was messing around with leaderboards a little bit ago, and was going to add letters. Like if you had $1000, it would say $1k.

Here's the leaderboard, but I just don't know how I would add letters, could someone help?

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

    local c = Instance.new("StringValue") -- I made it a stringvalue so I could add letters.
    c.Name = "Cash"
    c.Value = "0"
    c.Parent = stats
end)
1
STOP REPOSTING THE SAME THING, THIS IS THE THIRD TIME! General_Scripter 425 — 9y
0
I need help, you didn't tell me where to put the script you put. GreatCombat 5 — 9y
1
I gave you a script, you were lucky to have been given that! You keep requesting and this is not a request site, also duplicate posts are not allowed. General_Scripter 425 — 9y

Marked as Duplicate by General_Scripter, ChemicalHex, Marios2, and 1waffle1

This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.

Why was this question closed?