API

Part

What is a Part

The Part object is a physical object. When it is in the Workspacearrow-up-right, it will move and interact with other Parts. It can have bonds formed with other Parts, so that the two Parts stay in the same relative position.

Parts are the basic building blocks of any Roblox place. Commonly known as bricks, you’ll see these the most often of any other objects as almost every place is built out of these. It is possible to stretch a Part to very large sizes and use them for baseplates, or make them very small and use them to create cool looking Toolarrow-up-right.

How can I edit a Part

The Part object can be edited using the various studio tools. It is available via either the insert menu, or the Object Insert menu. It can also be created using the function:

Instance.new("Part")

How do I create different shaped Parts

Using the Mesh objects, such as SpecialMesharrow-up-right, BlockMesharrow-up-right, or CylinderMesharrow-up-right objects you can change the shape of them. Using the Decalarrow-up-right or Texturearrow-up-right objects, you can place pictures on top of the bricks.

Changing Parts using scripts

There are many scripting opportunities using the Part object. Many of the other scripting objects, such as BodyForcearrow-up-right objects operate inside of a Part or other physics based objects. Editing the Part’s properties through a script can result in a lot of fun opportunities.

Reference: https://developer.roblox.com/en-us/api-reference/class/Partarrow-up-right

Model

Models are container objects, meaning they hold objects and group objects together. They are best used to hold collections of BasePartarrow-up-rights and have a number of functions that extend their functionality.

At their most basic level, Models allow developers to group selections of BasePartarrow-up-rights together. This is particularly useful when building environments in Roblox Studio as it means the grouped parts can be moved and rotated together. When not storing collections of BasePartarrow-up-rights it is recommended that developers use the Folderarrow-up-right object, as they will not benefit from the additional functionality Models provide.

To access some of the extended functionality Models provide, the Model.PrimaryPartarrow-up-right property needs to be set. This property points to the BasePartarrow-up-right within the Model that is to be used when moving or otherwise manipulating the model.

Models have a wide range of applications, including being used for Roblox Player Characters. They also have a number of unique behaviors that are important to keep in mind when using them:

Reference https://developer.roblox.com/en-us/api-reference/class/Modelarrow-up-right

Last updated

Was this helpful?