How to make a Currency GUI with "," *Comma*

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? I want to make a very successful game!

  2. What is the issue? I want to script a Currency GUI with “,” Comma in each 3 Numbers

  3. What solutions have you tried so far? I tried watching in YT nothing worked pls someone help me or provide my a Script

Thank you so much for helping me guys and have a great day

1 Like

WOW thank you so much @zCrxtix

Feel free to mark it as the solution if it helped.

Yes yeah sure @zCrxtix it helped me alot!

btw how do i set it up? @zCrxtix

Click on the .rbxm file in 3.0.2, then open up the file and drop it into roblox studio.

ok and where do i put it? in Replicated or ServerScript?

If your script is a normal script, then ServerScriptService, otherwise ReplicatedFirst/ReplicatedStorage.

1 Like

ok thank you so much for helping mine is a Script not local Script

Wait it doesnt seem to work…Look

Did you follow the “How to Use”? section

1 Like

an you Send a link to it? plsssssssssssssssss

Nevermid i found it lol thanks so much for the help @zCrxtix

Still didn’t work heres my localScript i puted it in Starterplayerscripts

local FormatNumber = require(--[[location of FormatNumber]])
local formatter = FormatNumber.NumberFormatter.with()
print(formatter:Format(1234)) --> 1,234

-- Add your abbreviations/compact notation suffixes here
local abbreviations = FormatNumber.Notation.compactWithSuffixThousands({
	"K", "M", "B", "T",
})
local formatter = FormatNumber.NumberFormatter.with()
:Notation(abbreviations)
-- Round nearest integer but keep 3 significant digits.
-- 1.23K  12.3K  123K
-- If you prefer rounding to certain decimal places change it to something like Precision.maxFraction(1) to round it to 1 decimal place
:Precision(FormatNumber.Precision.integer():WithMinDigits(3))

print(formatter:Format(1234)) --> 1.23K
print(formatter:Format(12345)) --> 12.3K
print(formatter:Format(123456)) --> 123K

Can u send me the Model of your script of this in the Correct way and tells where to put plsss im having a hard time in this Module