Hey dude i don't know if this works anymore cause i used it a long time ago, but here give it a try:
01 | local function comma_value(amount) |
02 | local formatted = amount |
04 | formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)" , '%1,%2' ) |
12 | local function formatTokens(amount) |
13 | if game.Players.LocalPlayer.leaderstats.Tokens.Value > 100000000 then |
14 | return comma_value(amount/ 1000000 ).. "M" |
15 | elseif game.Players.LocalPlayer.leaderstats.Tokens.Value > = 100000 then |
16 | return comma_value(amount/ 1000 ).. "K" |
18 | return comma_value(amount) |
22 | local function refreshTokenText() |
35 | repeat wait() until game.Players.LocalPlayer:FindFirstChild( "leaderstats" ) and game.Players.LocalPlayer:FindFirstChild( "leaderstats" ):FindFirstChild( "Tokens" ) |
37 | game.Players.LocalPlayer.leaderstats.Tokens.Changed:Connect( function () |
Of course you need to change things inside, example as "Tokens" and other stuff."
if worked or helped please accept, comment if there's a problem.