> For the complete documentation index, see [llms.txt](https://docs.biyei.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.biyei.net/scripts/vip-weapons/configuration.md).

# Configuration

{% hint style="info" %}
Change in Config.Framework your Framework
{% endhint %}

To change the framework it is important to know that you must do it in biyei\_utils

````
```lua
---- Framework System ----
Config.Framework = 'esx'
---=========================---
-- 'esx' = ESX Framework
-- 'qbcore' = QBCore Framework
---=========================---
```
````

## Change Language for F10 Menu

To change the language it is important to know that you must do it in biyei\_utils

```lua
---- Language System----
Config.Lang = 'es' 
---=========================---
-- 'es' = Español
-- 'en' = English
-- 'fr' = Français
-- 'pt' = Português
-- 'de' = Deutsch
-- 'ru' = Русский
---=========================---
```

## Config File

```lua
Cfg = { }
Cfg.Debug = true --- Use if they have any errors and see the debugging code.

-- In game language detect with biyei_utils

Cfg.OpenManageCommand = 'vipweapons'
Cfg.OpenKeyMenu = 'f10'

Cfg.MenuColor = { r = 87, g = 35, b = 100 }

---- Menu Position ----
Cfg.MenuPosition = 'centerright'
-- Positions:
-- 'topleft' | 'topcenter' | 'topright' | 'centerleft' | 'center'
-- 'centerright' | 'bottomleft' | 'bottomcenter' | 'bottomright'
-----------------------

```
