Ryan 204966f929 Added Files
Totally not ready
2017-06-10 17:10:46 -04:00

4 lines
104 B
Plaintext

function gui.round(num, idp)
local mult = 10^(idp or 0)
return math.floor(num * mult + 0.5) / mult
end