> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# getfflagtype

> Returns the detected type for a Roblox fast flag as "string", "bool", "int", or "unknown". Missing or unsupported flags return "unknown".

<div className="real-function-page">
  ```lua theme={null}
  getfflagtype(name: string): "string" | "bool" | "int" | "unknown"
  ```

  ## 引数

  <ParamField path={"name"} type={"string"} required>
    Exact fast flag name to inspect.
  </ParamField>

  ## 戻り値

  <ResponseField name={"flagType"} type={"\"string\" | \"bool\" | \"int\" | \"unknown\""}>
    Detected flag type string.
  </ResponseField>

  ## 例

  Read the detected type for a Roblox fast flag by exact name.

  ```lua theme={null}
  local flagType = getfflagtype("SomeFFlagName")

  if flagType ~= "unknown" then
      print(flagType)
  end
  ```
</div>
