title | description | hideBreadcrumbs |
---|---|---|
Avatar Characters |
All Roblox users are represented by an avatar character which can be customized with body parts, accessories, and clothes from the Marketplace or within experiences. |
true |
Every Roblox user is represented by a customizable character called an avatar. Avatars are character models with many specialized features that allow users to interact with the world and customize themselves with a wide range of clothing and accessories from the Marketplace.
Custom avatars are first created in 3D modeling programs, such as Blender or Maya, before importing into Studio. To create a custom Roblox avatar character for your own experience, it's important to start with the following:
- An advanced background with 3D modeling tools such as Blender or Maya.
- An understanding of the components that make up an avatar character.
- An understanding of the general character creation process.
- Review the basic character creation tutorial to get started on creating your first avatar character using Roblox's templates.
- Various tools, resources, and guides provided by Roblox to standardize and expedite the creation process.
All avatar character models are made up of several fundamental components that provide users the functionality and flexibility to interact with their world. Many of these components are never made visible to the user, but they enable powerful avatar features that enhance social and environmental interactions. When creating avatar characters, all of these components are typically created first in your modeling software and then converted to their appropriate Roblox Studio instance on import.
Each avatar character is made up of the following rendered and non-rendered components:
15 body part meshes make up the physical aspects of the character model Texture image maps apply a surface color and appearance. Transparency allows underlying part colors to be exposed, such as custom skin tones. A rigging armature allows the body parts to properly connect with each other, driving movement, expressions, and animations Facial animation data allows avatars to express virtually all types of facial expressions for chatting and socializing Cage meshes set the outer boundary of the character, defining the surface where clothing and other layerable items can wrap and stretch over. Attachment points define where rigid accessories attach to a character Each avatar character is made up of 15 separate mesh objects These meshes must follow a standard naming conventionRoblox avatar characters are made up of 15 body parts, pieces of geometry that define the shape and contours of your avatar character. In Studio, these geometries are represented as Class.MeshPart
objects and are nested under a single Class.Model
.
Textures are image files that define the surface appearance of your character. You can create textures using a texture painting program or a 3D modeling software. In Studio, you must import textures as image files and access them through the Class.SurfaceAppearance
instance, or set as a Class.MeshPart.TextureID
property.
An armature allows each character to articulate its limbs and move naturally through the environment. Often referred to as bones or joints, this rigging character information includes skinning data which allows connected limbs, like the knees or elbows to bend organically. In Studio, each bone of the character armature is represented by Class.Bone
objects that connect the character Class.MeshPart
objects together.
This outer cage sets the invisible surface on which layerable accessories, such as clothing, will stretch and fit over the body. These cage meshes allow clothes to fit over models of different shapes and sizes without having to remodel the clothing item. In Studio, outer cage mesh objects are represented by a Class.WrapTarget
instance.
If you are caging your own non-template character model, it's important to use one of Roblox's body cage project files to ensure you are using a Roblox standard cage mesh. Removing or adding vertices from this standard mesh can cause issues with clothing fit and import.
Each character has common attachment points for equipping rigid cosmetics Each avatar character must include their associated 19 attachment pointsAttachment points define where rigid 3D accessories and equipables attach to the character's body. These are not rendered to the end-user but are represented as sphere geometries in 3D modeling software and, when imported into Studio, these geometries are created as Class.Attachment
instances using the standardized names.
When wearing layered clothing, the clothing isn't attached directly to the attachment, but it does reference the associated attachment point during ragdoll and dismemberment animations.
When designing an avatar model, you must export all of the avatar components in a single .fbx
or .gltf
for import into Studio. Since 3D creation isn't a linear process and always requires reiteration and testing, the process of creating an avatar character model can differ between individuals and various creation workflows.
In general, the creation process follows these typical workflows:
Basic Creation with TemplatesCustomize a Roblox template character that already includes all the necessary components. See [Creating with Templates](../characters/creating/index.md) for guides and instructions. Advanced Creation from ScratchCreate characters from scratch, allowing full customization of the avatar character's components. Ensure that all assets you create follow any applicable [Marketplace Policies](../marketplace/marketplace-policy.md) and [Roblox Community Standards](https://en.help.roblox.com/hc/en-us/articles/203313410-Roblox-Community-Standards).There are a variety of resources available for creators of all backgrounds to get started with character creation.
If you are interested in specific avatar creation topics, use the following table to find guides and resources that best match your needs:
Topic | Resources |
---|---|
Tutorials | [Basic Character Creation Tutorial](../accessories/creating/index.md) |
Reference Files | [Avatar references and project files](../characters/project-files.md) [Example Mesh/Model Objects](../modeling/project-files.md) |
Technical Specs | [.FBX Export Settings](../characters/export-settings.md) [Avatar Specifications](../characters/specifications.md) [General Mesh Specifications](../modeling/specifications.md) [Accessory Specifications](../accessories/specifications.md) [Marketplace Policy](../marketplace/marketplace-policy.md) |
Cosmetic Creation | [Accessories Overview](../accessories/specifications.md) [Creating Face Accessories](../characters/facial-animation/creating-face-accessories.md) [Accessory Fitting Tool](../accessories/accessory-fitting-tool.md) [Accessory Specifications](../accessories/specifications.md) [Marketplace Requirements](../marketplace/marketplace-policy.md) |
Texturing | [Texturing Requirements](../modeling/texture-specifications.md) [PBR Textures](../modeling/surface-appearance.md) |
Rigging and Skinning | [Rigging and Skinning Overview](../modeling/rigging.md) [Humanoid Rig Requirements](../characters/specifications.md#rigging) [Rigging Facial Bones](../characters/facial-animation/creating-basic-heads.md#rigging) [Auto Skin Transfer](../accessories/automatic-skinning-transfer.md) [Skinning Facial Bones](../characters/facial-animation/creating-basic-heads.md#skinning-face-bones) |
Facial Animation and Live Heads | [Basic Head Creation](../characters/facial-animation/creating-basic-heads.md) [Creating Face Accessories](../characters/facial-animation/creating-face-accessories.md) [FACS Pose References](../characters/facial-animation/facs-poses-reference.md) |
Testing and Validation | [Calisthenics Tool](../modeling/calisthenics-tool.md) [Clothing Validation Tool](../accessories/validation-tool.md) |
Publishing and Marketplace | [Uploading to Marketplace](../marketplace/publishing-to-marketplace.md) [Marketplace Policy](../marketplace/marketplace-policy.md) [Fees and Commissions](../marketplace/marketplace-fees-and-commissions.md) |