> For the complete documentation index, see [llms.txt](https://dragon-heart-studios.gitbook.io/dragonheartstudios/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dragon-heart-studios.gitbook.io/dragonheartstudios/scripts/dhs-prisonsim/configuration/object-placer-config.md).

# Object Placer Config

````lua
```lua
ObjectPlacerConfig = {}

ObjectPlacerConfig.Speed = 0.010 -- Move Speed
ObjectPlacerConfig.RotateSpeed = 0.5 -- Rotate Speed

-- Keys
ObjectPlacerConfig.UpKey = 172 -- Up Arrow / Move Prop Forward
ObjectPlacerConfig.DownKey = 173 -- Down Arrow / Move Prop Backwards
ObjectPlacerConfig.LeftKey = 174 -- Left Arrow / Move Prop Left
ObjectPlacerConfig.RightKey = 175 -- Right Arrow / Move Prop Right
ObjectPlacerConfig.BackKey = 29 -- B / Move Prop Backwards
ObjectPlacerConfig.ForwardKey = 47 -- G / Move Prop Forwards
ObjectPlacerConfig.RotateKey = 73 -- X / Rotate Prop
ObjectPlacerConfig.DeleteKey = 38 -- E / Copy Coords & Delete Prop


```
````
