How to make server memory usage statistic showing only full number?

how could i can make server memory usage info showing only full number instead of decimals too?

how it shows:

what i need (make as example in studio):

i used “stats” service, if it helps

Round it.

local memory = Stats:GetTotalMemoryUsageMb()
local display = `memory usage: {math.round(memory)} MB`
print(display)
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.