How do I make a gui display short text of an int value?

you can check if the value is greater than a certain number and divide it accordingly like this:

local text= script.Parent.Text--wherever or whatever the intvalue is.
if text.Value >= 1000 then
local equation = text.Value/1000
script.Parent.Text = equation.."K+"
end
1 Like