About 323,000 results
Open links in new tab
  1. How to COMPLETELY round numbers - Scripting Support - Roblox

    Jul 7, 2021 · Also, I don’t know how math.round works behind the scenes, but I believe you can also do math.floor(number+0.5) This way, when the number’s decimal is larger or equal …

  2. How to round numbers - Scripting Support - Developer Forum

    Nov 6, 2020 · I want to know how to round number since math.floor isn’t working. If I plug in 97 as the level.value I get a number like 3.634325413636 e+17 i want to display this on a text label …

  3. How to round to 2 Decimal places? - Scripting Support - Roblox

    Aug 24, 2020 · Here’s my function to round numbers to whatever decimal places you want them to. local function RoundNumber(Number, NumberDecimalPlaces) local Rounding = math.floor …

  4. How to round numbers - Scripting Support - Developer Forum

    Jun 3, 2021 · The reason why is because math.round only works with decimal numbers, you can’t round whole numbers like that, What it does is first divive number by 10, so if iit was 14 it …

  5. How to round numbers? - Scripting Support - Roblox

    Mar 22, 2023 · Hi, i’m wan’t to make grid placement system but i have a trouble with one thing, how i can round number to nearest value that center aren’t 0. for example we have our …

  6. Rounding to 1 decimal point - DevForum | Roblox

    Jul 15, 2020 · Im basically making a speed gun system for my game, but once I get the result I get ridiculous numbers with 20 or so decimal digits, is it possible to round it down to just 1? I’ve …

  7. How to round a number to 2 decimal places? - Roblox

    Feb 11, 2022 · How to round a number to 2 decimal places? For example, if the number is: 0.628321 then it would become: 0.62

  8. Rounding to the nearest tenth? - DevForum | Roblox

    Dec 18, 2019 · If I have a number. Lets say it’s 2.32565343767, how can I round it to the nearest tenth? Like how can I turn the number into this: 2.3. I don’t want to round it to the nearest …

  9. Rounding Number to Nearest Whole - Scripting Support - Roblox

    Feb 1, 2021 · Hi! Using a number value, I need to round it’s value to the nearest whole number since I use decimals for a multiplication sequence. How could I do this so that, for example, a …

  10. How do i round decimals - Help and Feedback / Scripting ... - Roblox

    Mar 6, 2023 · You can divide the number by an increment, round it, then multiply it by the same increment. You do need to know what the increment should be, though. It can be any number, …