getfflag Synchronous

  • getfastflag

Read a Roblox Fast Flag as text. Kawaii checks its executor-visible override store first, then asks the host for the underlying value.

Syntax
Luau
getfflag(name: string) -> string

Parameters

Function parameters
ParameterTypeDescription
namestringFast Flag name.

Returns

string

The value converted to a string.

Usage notes

The result is always text even for a boolean or numeric flag. Lookup can raise when the host flag service is unavailable.

Example

Example
Luau
setfflag("DocsExampleFlag", "enabled")
print(getfflag("DocsExampleFlag"))
Kawaii documentation