Gui number issue

Right now, I am trying to make a simulator game, but something is getting in the way. I have a Gui that gives the amount of money you have, but it says “6000000000”, and I want it to say 6B.

Ex: -
What I have right now
Example
What I am looking for
Example2

I have searched all over the dev forum for this but I cannot find it.

1 Like

As I haven’t done this myself, and in the case that others don’t have a solution, here’s a fantastic tutorial from okeanskiy that covers this topic with lots of useful information and explanations:

4 Likes

Thank you very much! Helped a lot!

2 Likes

You could have a localscript that makes the gui equal to the amount of money, and concatenate it with B. Like:

gui.Text = (tostring(player.Money) .. "B")