Skip to content

Utility

Properties

Table

Utility.Table ( ) : Table


Object

Utility.Object ( ) : Object


Number

Utility.Number ( ) : Number


RichText

Utility.RichText ( ) : RichText


Call Service

Utility modules can be imported by calling the Utility service; the order of utility module names passed dictates the order of the returned modules (Tuple).

local Utility = shared:GetService("Utility")

local Table, Object = Utility { "Table" "Object" }

Tip

If you only need to use one module in a script, indexing the module directly is faster and more efficient.

local Utility = shared:GetService("Utility")

local Table = Utility.Table