Miscellaneous
getfflag
Reads a Roblox fast flag by exact name and returns its value as a string. Missing or unsupported flags return nil.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Reads a Roblox fast flag by exact name and returns its value as a string. Missing or unsupported flags return nil.
getfflag(name: string): string | nil
local value = getfflag("SomeFFlagName")
if value ~= nil then
print(value)
end