> For the complete documentation index, see [llms.txt](https://docs.otherplanet.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.otherplanet.dev/scripts/op-garages-v3/tutorials/how-to-add-player-to-garage-admin.md).

# How to add player to Garage Admin

{% hint style="warning" %}
Out of the box Script is now configured to Framework Groups: admin, superadmin, mod, and god
{% endhint %}

How to add Players by identifiers:

* Navigate to `config/MainConfig.lua`.
* Find the section `Config.AdminPanelPlayers`.
* Open **TXAdmin** and select the player you want to grant permissions to.
* Click on the **"IDs"** option.
* Copy one of the available identifiers.
* Paste the identifier into `Config.AdminPanelPlayers` in the config file.
  * **Remember to add a comma (`,`) at the end of each line.**

```lua
Config.AdminPanelPlayers = {
    ['steam:110000118d2c0db'] = true,
    ['discord:571105311251890186'] = true,
}
```

<figure><img src="/files/rLVDtdgADBVBhbaS0mPt" alt=""><figcaption></figcaption></figure>

## Second Method: (Allowing Groups)

It's important to grant your server administrators access to our Garage Admin and Commands. Don’t forget to add it to your `server.cfg` as well! (It's optional, You can always use the Config.AdminPanelPlayers - which is better)

```lua
add_ace group.admin opgarages.admin allow
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.otherplanet.dev/scripts/op-garages-v3/tutorials/how-to-add-player-to-garage-admin.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
