Utilities

getfflag

Reads the value of a Roblox fast flag by name.

Syntax

getfflag(name: string): string | nil

Arguments

NameTypeDescription
namestringName of the item to read or update.

Returns

NameTypeDescription
flagValuestring | nilRequested value, or nil when it is unavailable.

Description

Reads the value of a Roblox fast flag by name.

Call it with 1 parameter(s): name. The argument table explains which values are required and which ones only refine the behavior.

It returns flagValue (string | nil). Use the returns table to separate successful values from nil results and recoverable errors.

Example

Example call with placeholder values.

local result = getfflag("example")
print(result)