setfflag Synchronous
setfastflag
Store a text override for a Fast Flag as seen by Kawaii's getfflag. This is useful for a script's own flag check or a controlled compatibility experiment.
Luau
setfflag(name: string, value: string) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
name | string | Fast Flag name. |
value | string | Replacement string value. |
Returns
()No values.
Usage notes
The override store is authoritative for getfflag. The current Android build does not necessarily change Roblox's internal flag value.
Example
Luau
setfflag("DocsExampleFlag", "enabled")
if getfflag("DocsExampleFlag") == "enabled" then
print("Example override is visible")
end