Round
Rounds a number to the highest closest number, allows to add decimals
Arguments
Label
Explained
Type
Example
Why not just use math.round?
math.round?How does decimalPlaces work?
decimalPlaces work?local value = 525.1885
print(Math.Round(value)) -- 526
print(Math.Round(value, 2)) -- 525.19Last updated