ESX.Math.Round(value, numDecimalPlaces)
local value - 5.444 print('value: ' .. value) -- returns 5.444 print('value rounded: ' .. ESX.Math.Round(value)) -- returns 5 print('value rounded: ' .. ESX.Math.Round(value, 1)) -- returns 5.4