Roblox API Reference

Faces On DevHub

Represents a set of the six sides of a box that are considered active.

Constructors

Faces.new(faces: ...Variant)

All components of Faces are initialized to false. A variable list of arguments is received, but only the first 6 arguments are traversed. When a NormalId value is received, the component of Faces corresponding to the value is set to true. Other values are ignored.

Value Component
Enum.NormalId.Right Enables the Right component.
Enum.NormalId.Top Enables the Top component.
Enum.NormalId.Back Enables the Back component.
Enum.NormalId.Left Enables the Left component.
Enum.NormalId.Bottom Enables the Bottom component.
Enum.NormalId.Front Enables the Front component.

Fields

Right: boolean

A boolean indicating whether the Right face is enabled.

Top: boolean

A boolean indicating whether the Top face is enabled.

Back: boolean

A boolean indicating whether the Back face is enabled.

Left: boolean

A boolean indicating whether the Left face is enabled.

Bottom: boolean

A boolean indicating whether the Bottom face is enabled.

Front: boolean

A boolean indicating whether the Front face is enabled.

Operators

Faces == Faces

Determines whether two Faces values are equal.

Details

A Faces value is equal to another Faces value if their Right, Top, Back, Left, Bottom, and Front fields are equal.

Relevant members (2)