> For the complete documentation index, see [llms.txt](https://docs.l2s.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.l2s.dev/assets-and-guides/hotels-v2/configuration/elevators.md).

# Elevators

How to add new elevators ?

1- Go to sh\_elevators.lua and add new elevator

```lua
   ['uniqe-elevatorID'] = {
        [1] = {
            coords = vec3(-658.87, -1110.55, 15.06),
            heading = 62.64, 
            title = 'Main Floor', 
            description = 'Lobby & Reciption',
            target = {
                width = 2.6,
                length = 2,
                heading = 334,
            } 
        },
        [2] = {
            coords = vec3(-655.47, -1110.4, 21.834287643433),
            heading = 62.64, 
            title = 'Floor 1', 
            description = 'Floor 1',
            target = {
                width = 2.6,
                length = 2,
                heading = 334, 
            } 
        },

         -- ...

    },
```

2- Add the uniqe-elevatorID in hotel configuration

```lua
Elevators = {['uniqe-elevatorID'] = true, ['uniqe-elevatorID-2'] = true}, -- In sh_elevators.lua
```
