> ## 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.

# getfflag

> Reads a Roblox fast flag by exact name and returns its value as a string. Missing or unsupported flags return nil.

<div className="real-function-page">
  ```lua theme={null}
  getfflag(name: string): string | nil
  ```

  ## Argumenty

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

  ## Zwroty

  <ResponseField name={"flagValue"} type={"string | nil"}>
    String form of the flag value, or nil when the flag is missing or unsupported.
  </ResponseField>

  ## Przykład

  Read a Roblox fast flag by exact name. Known bool and int flags are returned as strings.

  ```lua theme={null}
  local value = getfflag("SomeFFlagName")

  if value ~= nil then
      print(value)
  end
  ```
</div>
