# 🎮 KeyList: Supported Keys

The **KeyList** contains all the keys that users can assign to actions.

#### 🔹 Example Keys:

```lua
KeyList = {
    {label = "Enter", value = "RETURN"},
    {label = "Space", value = "SPACE"},
    {label = "F1", value = "F1"},
    {label = "F2", value = "F2"},
    {label = "Z", value = "Z"},
    {label = "X", value = "X"},
    {label = "C", value = "C"},
}
```

🔹 **How to Add More Keys?**\
Simply add a new entry with a `label` (display name) and a `value` (FiveM keybind).

Example:

```lua
{label = "T", value = "T"}
```
