I made a Money GUI ,but when player have lots of money the text will be so small , so I want to make the number to short form like , if the player have 1,000,000 then , the gui will show 1M but not 1,000,000
1 Like
This question has been asked way too many times to count, this post will help you: Most efficient way of converting a number in scientific notation into a Suffix and back?
2 Likes
local Tags = {"K"}
local Value = game.Workspace.Value
if Value.Value == 1000 then do
game.Workspace.Value.Value = game.Workspace.Value.Value.." "..Tags[1]
end)
This is a simple shortener, but its pretty repetitive.
3 Likes
sorry i dont know what that call so i dont know what should i type to search