I recently created a quick module that can add commas to numbers (ex. 1000 1,000), and abbreviate numbers (ex. 1000
1k). This is currently a small module but will be expanded in the future with more functions and no limits! (because the max number you can use in the module currently is 1^12 (1 trillion))
Here is the link if you want to try it out:
Please report any bugs below!
Lua examples:
module:AddCommasToNumber(number)
local module = require(game.ReplicatedStorage.NumeralModule)
module:AddCommasToNumber(100000) -- returns 100,000
module:AbbreivateNumber(number)
local module = require(game.ReplicatedStorage.NumeralModule)
AbbreiviateNumber(7775484864) -- returns 7.7b