> ## Documentation Index
> Fetch the complete documentation index at: https://help.freakhosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Install Resources in Alt:V

> Master the resource management system in Alt:V. Learn how to upload and configure scripts, maps, and vehicle streams on your GTA V server.

## Managing Alt:V Resources

Resources are the fundamental building blocks of an Alt:V server. They contain the logic, assets, and streams (like custom maps or vehicles) that define the gameplay experience. Managing these correctly is essential for a stable and feature-rich server.

<CardGroup cols={2}>
  <Card title="Difficulty" icon="gauge-low">
    Intermediate
  </Card>

  <Card title="Time" icon="clock">
    10 Minutes
  </Card>
</CardGroup>

***

## Installation Workflow

Adding new features to your server follows a specific process to ensure everything loads correctly.

<Steps>
  <Step title="Upload Resource Folders">
    Place your resource folders (e.g., `chat`, `base-map`) into the `/resources/` directory of your server via the [Game Panel](https://panel.freakhosting.com) File Manager or SFTP.
  </Step>

  <Step title="Register in Configuration">
    You must manually list every resource in your `server.cfg` (or `server.toml`) file.

    ```yaml theme={null}
    resources: [
      'chat',
      'base-map',
      'player-hud'
    ]
    ```
  </Step>

  <Step title="Determine Loading Order">
    Alt:V loads resources in the order they are listed. If `Resource B` requires `Resource A` to function, `Resource A` **must** be listed first.
  </Step>

  <Step title="Restart Server">
    Restart your server via the **Console** to apply the changes and initialize the new resources.
  </Step>
</Steps>

***

## Organizing Your Resources

As your server grows, keeping your `/resources/` folder organized is important for maintainability.

<Info>
  ### Categorization Tip

  You can use sub-folders to categorize your scripts (e.g., `/resources/[system]/`, `/resources/[maps]/`).

  * **Note:** In Alt:V, if you use bracketed folders like `[system]`, you don't need to include the bracket name in the `server.cfg` resource list if the resource inside is correctly pointed to.
</Info>

<Important>
  ### Resource Manifests

  Every resource must contain a `resource.toml` (or `resource.cfg`) file. Without this manifest, the Alt:V engine will not recognize the folder as a valid resource and will fail to load it.
</Important>

***

<Note>
  ### Need Extra Help?

  If you encounter any issues, our support team is ready to assist:

  * **Live Chat:** Quick assistance via our website.
  * **Support Ticket:** [Open a Ticket](https://freakhosting.com/clientarea/submitticket.php)
  * **Discord:** [Join our Community](https://discord.gg/freakhosting)
  * **Email:** [support@freakhosting.com](mailto:support@freakhosting.com)
</Note>

<Tip>
  ### Save on Your Hosting

  Ready to get a new server? Use code **KB20** at checkout for **20% off** your first month!
</Tip>

***

<div align="center">
  **Last Updated:** January 2026 | **Assets:** Building your virtual world.
</div>
