# Install

> ## `Choosing Framework`

1. **DEFAULT OPTIONS:**\
   \&#xNAN;**- ESX**\
   **- QB**
2. *The script will choose it automatically*e
3. You can edit the configuration in Config.lua (OPENSOURCE)

***

> **Change key, Colors and size of images**

```
        {
         key = 73, --X
         title = "Buildings",
         description = "Elaboration of Structures",
         img = "assets/img/logo.png",
         style = {
            imageIconsInPx = 50,
            ColorRadialItem = "#fcf0e0",
            ColorRadialItemHover = "#bf3229"
        }, 
```

> **Menu Creation and Crafts**

```
           {
                title = "Foundation", 
                description = "Floor",
                img = "assets/img/foundation.png", 
                action = {
                    type = "Trigger", --Trigger or Command
                    value = "Orcinus_Build", --eventName or commandName 
                    --argument1-9
                    argument1 = "model_base_wood", --eventParam1 or commandParam1 
                    crafting = {
                        requireIems = {
                            {name = "wood", label = "Wood", count = 25, remove = true},
                        },
                        obtainItems = {
                            {name = "model_base_wood",count = 1},
                        }
                    }
                },
            },
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://td-devs.gitbook.io/td-devs/td-radialmenu/install-and-configure/install.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
