I need help, I was scripting my simulator abbreviation and when I finished, I tried getting numbers like “sx”, “Sp”, “O”, “N”, “de”, “Ud”, “DD”, “tdD”, “qdD”, “QnD”, “sxD” but the max was “qn”, how do I get bigger numbers, bigger than the default for roblox
local function format(value)
for i=1, #suffixes do
if tonumber(value) < 10^(i*3) then
return math.floor(value/((10^((i-1)*3))/100))/(100)..suffixes[i]
end
end
end
this is how i format my numbers, it just doesnt work over 18 zeros then i use a while function to keep updating it
That will only increase the limit to 2^1023 which isn’t enough for some endless simulators which is why there are number modules that increases the limit way higher.