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

# Info

## SetPriority

Sets a player's priority status.

```lua theme={"dark"}
Info.SetPriority(Player: Player, string: Priority, boolean: Value)
```

<ParamField path="Player" type="Player" required>
  The player to search for and modify.
</ParamField>

<ParamField path="Priority" type="string" required>
  The priority type to apply. Accepts: `Priority, Whitelist, DisableEsp, None` \
  \
  None sets Priority and Whitelist to false. DisableEsp is unaffected by this.
</ParamField>

<ParamField path="Value" type="boolean" required />

## GetPriority

Returns a table of the specified player's priority statuses if found, otherwise nil will be returned. Includes `Player, Whitelist, Priority, DisableEsp`

```lua theme={"dark"}
Info.GetPriority(Player: Player)
```

<ParamField path="Player" type="Player" required>
  The player to search for.
</ParamField>

## GetPriorityList

Returns a table of players with their priority statuses. Includes `Player, Whitelist, Priority, DisableEsp`

```lua theme={"dark"}
Info.GetPriorityList()
```
