# Installation

{% tabs %}
{% tab title="ESX/QB/QBX" %}

* Ensure you have all dependencies installed
* Download from [GitHub](https://github.com/s4t4n667/s4t4n667_lawmenu)
* Add into your \[resources] folder
* Ensure resource is named *'s4t4n667\_elevators*'
* Set up job/item locks as required
* Restart your server
  {% endtab %}

{% tab title="Dependencies" %}

* [x] [ox\_lib](https://github.com/overextended/ox_lib)
* [x] [ox\_target](https://github.com/overextended/ox_target)
  {% endtab %}

{% tab title="Job/Item lock" %}

```lua
elevators = {
		['Mission Row Police Station'] = {
			{
				floortitle = 'Ground Floor', 
				label = 'Access the ground floor.',				
				coords = vector3(463.72, -985.37, 34.3), 
				heading = 87.83,
				joblock = { 
					["police"] = 0,
				},
				itemlock = nil,
			},
			{
				floortitle = 'Level 1', 
				label = 'Access the Helicopter pad.',				
				coords = vector3(468.49, -983.95, 43.69), 
				heading = 91.48,
				joblock = nil,
				itemlock = {
					'water',
				},
			},
		},
	}
```

{% endtab %}
{% endtabs %}
