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

# getfflagtype

Returns the data type of the specified Fast Flag.

```luau theme={null}
getfflagtype(flag: string): string
```

## Parameters

| Parameter | Type     | Description                |
| --------- | -------- | -------------------------- |
| `flag`    | `string` | The name of the Fast Flag. |

## Returns

`string` - The FFlag data type (e.g. `'bool'`, `'int'`, `'string'`).

## Example

<CodeGroup>
  ```luau Example 1 theme={null}
  print("Flag Type: ", getfflagtype("DFIntTaskSchedulerTargetFps")) -- int
  ```

  ```luau Example 2 theme={null}
  print(getfflagtype("FFlagCoreGuiDrivesLocalPlayer")) -- bool
  ```
</CodeGroup>

<Tip>
  Useful when determining what type of value to assign via `setfflag`.
</Tip>
