---
title: "Roblox units"
url: /docs/en-us/physics/units
last_updated: 2026-06-22T22:42:11Z
description: "Explore the physical units used in Roblox and how they convert to metric units."
---

# Roblox units

This article outlines Roblox physical units and how they convert to metric units. Understanding units is useful whenever you work with physics, as in the following examples:

- Customizing your experience's gravity, jump height/power, and walk speed in the **World** tab of Studio's **File** ⟩ **Experience Settings** window.
- Tuning linear/angular velocities, forces, torques, stiffness, and damping of [mechanical constraints](/docs/en-us/physics/mechanical-constraints.md) and [mover constraints](/docs/en-us/physics/mover-constraints.md).
- Adjusting the density of [custom materials](/docs/en-us/parts/materials.md#custom-materials).

## Unit conversions

#### Primary Units

In general, you can use the conversions in the following table to relate Roblox's primary units for time, length, and mass to their metric counterparts.

| Unit | Roblox | Metric |
| --- | --- | --- |
| **Time** | 1 second | 1 second |
| **Length** | 1 stud | 28 cm |
| **Mass** | 1 RMU* | 21.952 kg |

_* RMU = Roblox Mass Unit_

#### Derived units

The primary units are used to generate conversions for **derived** units such as water density and air pressure at standard conditions. The following physical properties are expressed in metric units and Roblox units, with primary unit equivalents provided in brackets. All conversions have been rounded to three significant figures.

| Unit | Metric | Roblox |
| --- | --- | --- |
| **Water Density** | 1 g/cm³ | 1 RMU/stud³ |
| **Air Density** (sea level) | 0.00129 g/cm³ | 0.00129 RMU/stud³ |
| **1 atmosphere** | 101,325 Pa _[kg/(m s²)]_ | 1290 RMU/(stud s²) |
| **Spring Stiffness** | 1 N/m _[kg/s²]_ | 0.0456 RMU/s² |
| **Spring Damping** | 1 N s/m _[kg/s]_ | 0.0456 RMU/s |
| **Velocity** | 1 m/s | 3.57 studs/s |
| **Force** | 1 N _[kg m/s²]_ | 0.163 Rowtons _[RMU stud/s²]_ |
| **Torque** | 1 N-m _[kg m²/s²]_ | 0.581 Rowton-studs _[RMU stud²/s²]_ |

#### Gravity

The following table illustrates gravitational acceleration in Roblox units and metric units for presets in the **World** tab of Studio's **File** ⟩ **Experience Settings** window.

| Preset | Roblox | Metric |
| --- | --- | --- |
| **Classic** (default) | 196.2 studs/s² | 54.936 m/s² |
| **Realistic** (real-world) | 35 studs/s² | 9.8 m/s² |
| **Action** | 75 studs/s² | 21 m/s² |

#### Physical limits

Roblox places limits on certain physical properties, as outlined in the following table. Details on these properties is located in the `Datatype.PhysicalProperties` documentation.

| Property | Minimum | Maximum |
| --- | --- | --- |
| **Density** (RMU/stud³) | 0.0001 | 100 |
| **Friction** | 0.0 | 2.0 |
| **Friction Weight** | 0.0 | 100 |
| **Elasticity** | 0.0 | 1.0 |
| **Elasticity Weight** | 0.0 | 100 |

## Importance of unit consistency

Internally, the Roblox physics engine does not use unit conversions. You're free to define your own unit interpretations for studs (length) and RMUs (mass), but these should be used in a consistent manner throughout the experience. For example, if you decide that one stud equals one foot (30.483 cm), the unit density of water implies an RMU is equal to 62.4 lbs (28.3 kg):

> 1 (g/cm³) × (30.48³ cm³/ft³) = 28,317 (g/ft³) × (0.00220462 lbs/g) = 62.4 (lbs/ft³) = 1 (RMU/stud³)

Overall, it's recommended that you use standard Roblox units because it makes an experience work as expected in all scenarios, such as compatibility with VR controls.