Volt

getfflag

Gets a Roblox Fast Flag value.

Syntax

getfflag(name: string) -> string

Parameters

ParameterTypeDescription
namestringThe flag name

Returns

TypeDescription
stringThe flag value

Description

getfflag retrieves the current value of a Roblox Fast Flag.

Example

-- Get current target FPS
local fps = getfflag("DFIntTaskSchedulerTargetFps")
print("Target FPS:", fps)

-- Check if a feature is enabled
local enabled = getfflag("FFlagSomeFeature")
print("Feature enabled:", enabled == "true")

On this page