How can I put Commas inside my Leaderstat GUI?

How can I make it so it has commas in the Coin leaderstat GUI?
image
There is my current script that I am using inside the Text, if you know how to do this, any help is appreciated!


script.Parent.Text = " "..Coins.Value
Coins.Changed:connect(function()
	script.Parent.Text = " "..Coins.Value
end)

This might help: How would i make a large number have commas?
Also Roblox Hub article thing about string patterns: String Patterns

Would I put their script under where I have mine?