Syntax
getfflag(name: string): string | nilArguments
| Name | Type | Description |
|---|---|---|
name | string | Name of the item to read or update. |
Returns
| Name | Type | Description |
|---|---|---|
flagValue | string | nil | Requested 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)