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

# Quickstart

> Get FzD Action Wheel running and test a real cross-resource menu.

## 1. Add the resource

Keep the folder name exactly:

```text theme={null}
fzd_actionwheel
```

Add it to your `server.cfg`:

```cfg theme={null}
ensure fzd_actionwheel
```

## 2. Start your integrating resources afterwards

```cfg theme={null}
ensure fzd_actionwheel
ensure my_resource
```

When Action Wheel is required by another resource, add this to that resource's `fxmanifest.lua`:

```lua theme={null}
dependency 'fzd_actionwheel'
```

## 3. Test the included shop demo

Place `fzd_actionwheel_shop_demo` beside the main resource, then run:

```text theme={null}
refresh
ensure fzd_actionwheel
ensure fzd_actionwheel_shop_demo
```

In game, run:

```text theme={null}
/shopwheel
```

The demo opens **Pay for items** and **Put items back** using the real `open` export. It changes no money or inventory.

<Check>
  If the demo opens successfully, the NUI and cross-resource export are working.
</Check>

## Next steps

<CardGroup cols={2}>
  <Card title="Configure the wheel" icon="sliders" href="/scripts/action-wheel/getting-started/configuration" />

  <Card title="Create your first action" icon="plus" href="/scripts/action-wheel/guides/creating-actions" />
</CardGroup>
