I did this a long while ago but I do not remember how to anymore.
If my value was 1000 I'd want it display as 1,000 instead, this is to be used in a GUI.
Thanks, NewGPU
You cant without making your own GUI. Rename "LeaderStats" in player to something else so it isnt automatically made.
then you have to code it so that it works the way you want.
Well, If your looking to make a leaderstats like that. Use this code.
game.Players.PlayerAdded:Connect(function(plr) -- When Player Added. local stats = Instance.new("IntValue", plr) -- Insert an IntValue into all players that join. stats.Name = "leaderstats" -- Names it 'leaderstats' local Money = Instance.new("IntValue", stats) -- puts IntValue into all players 'leaderstats' Money.Name = "Money" -- Puts name as money. Change name to your currency. Money.Value = 5000 -- How much money all players start with.