Miscellaneous
getfflagtype
Returns the detected type for a Roblox fast flag as “string”, “bool”, “int”, or “unknown”. Missing or unsupported flags return “unknown”.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the detected type for a Roblox fast flag as “string”, “bool”, “int”, or “unknown”. Missing or unsupported flags return “unknown”.
getfflagtype(name: string): "string" | "bool" | "int" | "unknown"
local flagType = getfflagtype("SomeFFlagName")
if flagType ~= "unknown" then
print(flagType)
end