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.

Syntax
Luau
setfflag(name: string, value: string) -> ()

Parameters

Function parameters
ParameterTypeDescription
namestringFast Flag name.
valuestringReplacement 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

Example
Luau
setfflag("DocsExampleFlag", "enabled")
if getfflag("DocsExampleFlag") == "enabled" then
    print("Example override is visible")
end
Kawaii documentation