# Placing New Items

The resource includes a coordinate finder tool to help you place collectables.

## Enable the Tool

In `config/shared.lua`, make sure the raycast command is enabled:

```lua
debug = {
    raycastCommand = true,
},
```

***

## Using the Coordinate Finder

1. Run the command in-game:

   ```
   /col_coords
   ```
2. A red marker appears where you're looking
3. Walk around and aim at surfaces to see where items would be placed
4. Press **E** to copy the current coordinates to your clipboard
5. Paste the coordinates into your set configuration:

   ```lua
   items = {
       { coords = vec3(123.45, 678.90, 12.34) },
   },
   ```

***

## Tips

* The marker snaps to surfaces, so you can see exactly where the object will appear
* Use this to test placement before adding coordinates to your config
* Coordinates are copied into your clipboard as `vec3(x, y, z)` format, ready to paste
