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.
Luau
getfflag(name: string) -> stringParameters
| Parameter | Type | Description |
|---|---|---|
name | string | Fast Flag name. |
Returns
stringThe 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
Luau
setfflag("DocsExampleFlag", "enabled")
print(getfflag("DocsExampleFlag"))