Answers for "roblox studio how to remove decimals"

0

roblox studio how to remove decimals

-- Example

local x = 10.6
print(math.floor(x)) -- 10
print(math.ceil(x)) -- 11
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language