# How to Install

{% hint style="info" %}
**If you face any issues, you can contact us on our Discord and we will help you to the utmost of our abilities.**
{% endhint %}

## Setup Guide

Follow the steps below:

1. Download the script from keymaster.fivem.net
2. Remove any existing bank scripts (qb-banking for instance)
3. Extract the provided files
4. Run the SQL provided along with the files. Below is a snippet of the SQL provided:

```sql
CREATE TABLE IF NOT EXISTS `accounts` (
  `identifier` varchar(50) NOT NULL,
  `id` varchar(50) NOT NULL DEFAULT '',
  `name` longtext NOT NULL,
  `balance` bigint(20) NOT NULL DEFAULT 0,
  `transactions` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

```

5. After running the SQL, go ahead and configure the script to your liking by changing the language in the config and so on.&#x20;
6. Enjoy the script.

If you face any difficulties, you can contact us anytime on our Discord by creating a support ticket.

Discord: <https://discord.gg/storm-dev>


---

# 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://docs.storm-developments.com/welcome/scripts/st_banking-v2/how-to-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.
