> For the complete documentation index, see [llms.txt](https://pixel-development-1.gitbook.io/pixel-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pixel-development-1.gitbook.io/pixel-documentation/admin-menu/installation.md).

# Installation

How to install the script?

* Insert the resource to the resources folder
* Run the SQL's

```sql
CREATE TABLE IF NOT EXISTS `px_adminmenu_ban_player` (
  `identifier` longtext DEFAULT NULL CHECK (json_valid(`identifier`)),
  `reason` varchar(50) DEFAULT NULL,
  `staffer` varchar(50) DEFAULT NULL,
  `date` varchar(50) DEFAULT NULL,
  `time` varchar(50) DEFAULT NULL,
  `idban` varchar(50) DEFAULT NULL,
  `banned` int(11) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
```

* Configure the config in the path `shared/config.lua`
* Configure the language  in the path `shared/language.lua`
* Start the resource in your `server.cfg` file by writing: `ensure px_adminmenu`
* For safety, the server remains

{% hint style="danger" %}
Note: Don't rename the resource otherwise it would not work
{% endhint %}
