is there any way to avoid scientific notation? (6.5e+23 for example)
my number to suffix script is not working properly on big numbers because of that so is it possible to somehow make the script not use scientific notation?
You can probably use the %.f
format to stop it from doing that
local num = 3333333333333333333333333333333333333333333333
print(num)
print(string.format("%.f",num))
Output
The slight problem is the imprecision, but given is this is a large number, shouldn’t be that much of a problem for you
5 Likes
you are my hero man thanks for help
1 Like
Anytime! If you have anymore issues don’t be afraid to make another post!
2 Likes