Models

Models are containers for physical objects, such as parts, welds, and joints that you can use to organize your workspace and group your assets. While models can often contain connected parts, known as an assembly, models can contain any number of individual parts and other objects, such as scripts, and attachments.

Characters, such as avatars or NPCs, are a single Model containing the appropriate humanoid parts, joints, and additional components:

An example character model of a humanoid monster girl in a dark purple dress.
A model named Octavia
The groupings which comprise the Octavia model in Studio's Explorer window.
The groupings that comprise the model

Create models

When you group objects together, they automatically become a Model object. However, you can also insert an empty Model object into the Workspace, then manually add child objects to the model.

To create a model using the grouping method:

  1. In the Explorer window or 3D viewport, select every object that you want to group into a model.

  2. Right-click on one of the objects and select Group, or press Ctrl + G on Windows or + G on Mac. A new Model object displays with all of the objects that make up the model nested underneath.

    A close up view of the Explorer window. A Model object is highlighted with three nested children.

Set a primary part

If you have a model with parts that are joined together through physical joints like WeldConstraints or Motor6Ds, you should specify a BasePart within the model to become a PrimaryPart. A model's PrimaryPart is the physical reference that specifies which BasePart the pivot point and bounding box should move with when the model changes position or orientation.

To set a primary part:

  1. In the Explorer window, select a model.
  2. In the Properties window, select the PrimaryPart property. Your cursor changes.
  3. Back in the Explorer window, select the part that you want to become your primary part.

Select models

As you hover over models in the viewport, they are outlined to indicate their potential selection. You can select an outlined model by clicking it, or you can select multiple models by holding Shift, Ctrl, or as you hover over and click them.

A warehouse view in the 3D viewport. Multiple models are selected and highlighted with a light blue outline.

As models typically contain multiple child parts or meshes, some children may be hidden from view. To select a specific child without moving the camera around or locating the child in the Explorer hierarchy, click while holding Alt on Windows or on Mac to perform selection cycling.

Selection cycling

Transform models

You can move, scale, or rotate a model using the Studio transform tools within the toolbar's Home and Model tabs. Unless you've set a primary part, a model transforms based on the center of its bounding box.

Additionally, within a Script or LocalScript, you can move or rotate a model through the following methods:

MethodDescription
MoveTo()Moves the model's PrimaryPart to the given position. If a primary part has not been specified, the root part of the model will be used.
PivotTo()Transforms the model along with all of its descendant PVInstances such that the pivot is located at the specified CFrame.
TranslateBy()Shifts a model by the given Vector3 offset, preserving the model's orientation.

Model behaviors

While models act similarly to Folder objects for most purposes in your experience, they also exhibit some unique behaviors.

Character models

When a Humanoid is present inside a model that contains a Part named Head, Roblox displays a name and/or health bar above that part. For more information, see Character Name/Health Display.

Character display information above an in-experience avatar.

Destroy height

To prevent parts that have fallen off of an experience's map from continuing to fall forever, Studio automatically destroys parts that fall below the Workspace.FallenPartsDestroyHeight value. If a part destroyed due to this behavior is the last part in a model, then that model will also be destroyed.

Model streaming

Instance streaming dynamically loads and unloads Models on a player's device as their character explores the 3D world. With streaming enabled, you can specify the way each model should be treated under streaming behavior. For example, a model set to Persistent will never stream out, or a model set to Atomic will stream in and out as a single unit with all of its descendants.

Because 3D content that exists on the client changes dynamically in a streaming-enabled experience, models may suddenly disappear. To alleviate this, you can set specific models to render as lower resolution "imposter" meshes when streamed out, as detailed in Model Level of Detail.

See Model Streaming Controls for more on model-level streaming controls.

Upload models

When you upload or import a .gltf, .fbx and .obj model file to the cloud using the 3D Importer, Roblox represents it as a cloud-based asset with a unique corresponding ID. This cloud-based asset system allows you to store models through Roblox and reuse them across the platform in various contexts without maintaining local copies as part of each saved Studio experience.

To upload a model you made in Studio:

  1. In the Explorer window, right-click your model. A contextual menu displays.
  2. Select Save to Roblox. The Asset Configuration window displays.
  3. In the Asset Configuration window,
    1. Set Content Type to Development Item.

    2. Set Asset Category to Model.

    3. Complete the following fields:

      • Title - The name of your model.
      • Description - A short description of your model.
      • Creator - Use the dropdown to select if you'd like to publish this asset as an individual or as part of an associated group.
      • Genre - The genre of your model.
    4. Click the Save button. After a moment, the Asset Configuration window displays your model's assetID that you can use in your projects or share with other creators, groups, or experiences. For more information on granting permission to collaborators and experiences so that they can use your models, see Asset privacy

Distribute models

You can distribute models to the Creator Store for other creators to use within their own experiences as long as each model only references:

  • Open use assets.
  • Restricted assets that you created, excluding audio and video.
  • Free assets from the Creator Store, including audio and video.

Once you distribute a model, all newer versions include the same restrictions even if you later unlist it from the Creator Store.

As with any asset, all models must adhere to the Community Rules, Terms of Use, the DMCA Guidelines regarding copyright and Creator Store asset moderation rules. When creating models for the Creator Store:

  • Limit each mesh to a maximum of 20,000 triangles.
  • Read and address any warnings shown during the import process.
  • Scale and orient your model appropriately during import so that it's usable out of the box when inserted from the Creator Store.