tutorial 1
if you want to convert real world measurements into Bloxburg sizes, remember that 1 Bloxburg tile = 1.4 meters in real life
Why?
Because *1 stud in real life ≈ 0.28 meters* (according to the Roblox Creator Hub)
This means *1 tile = 5 studs*
And *1 tile = 5 × 0.28 = 1.4 meters* in real life. So, our formula becomes
*amount of tiles = meters ÷ 1.4*
So for example
*10 meters in real life ÷ 1.4 = 7.14 tiles in Bloxburg* which is annoying because bloxburg really ***only does use whole numbers as measurements.***, So we have 4 rounding methods
> FLOOR (round down to the previous whole number)
CEILING (round up to the next whole number)
ROUND (round to the nearest whole number)
TRUNC (ignore the decimal plac)
+ FLOOR(x) → FLOOR(7.14) = 7 tiles
+ CEILING(x) → CEILING(7.14) = 8 tiles
+ ROUND(x) → ROUND(7.14,0) = 7 tiles
+ TRUNC(x) → TRUNC(7.14) = 7 tiles
**One more note before you proceed:** TRUNC(x) and FLOOR(x) only work differently for negative numbers. But since bloxburg doesn't use negative tile amounts, they're ***effectively the same thing***
Hope this helped, because I've been on reddit for like an hour straight, tryin to think of my wording and how i should say this, so please, thank you so much!
(Oh, one more thing, you can also modify to formula to give you more space, like adding 2 or 3 more tiles. And your modified formula will be
*amount of tiles = (meters ÷ 1.4) + N*
Where N is a whole, non-positive number)