how to remove extra decimal places in roblox code example
Example: roblox studio how to remove decimals
-- Example
local x = 10.6
print(math.floor(x)) -- 10
print(math.ceil(x)) -- 11
-- Example
local x = 10.6
print(math.floor(x)) -- 10
print(math.ceil(x)) -- 11