# Bodycam

## Bilgilendirme

Polisler için olan bodycam sayesinde yüksek rütbeliler tarafından polis memurları departmandaki kamera sistemlerinden izlenebilecek. Polis memuru yaralandığında bodycam otomatik olarak kapanır.

***

<figure><img src="https://2652667007-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FopePunNPJYyKRtvTDgAB%2Fuploads%2Fyx8AZFG9KNepe7sAKIuO%2Fimage.png?alt=media&#x26;token=808a7dec-61b1-4ed1-bce7-5d387810b657" alt=""><figcaption></figcaption></figure>

{% code title="bb\_bodycam" %}

```lua
Config = {}

Config.UseTarget = true -- Set to true to use Third-Eye, otherwise false

Config.Jobs = {
    ["police"] = true,
    ["sheriff"] = true,
    ["sasp"] = true,
}

-- The Locations to access Body Cam menu
Config.Locations = {
    { vector3(440.39, -987.45, 30.72) }, 
    { vector3(-448.41, 6013.99, 31.29) }, 
}

-- Box zones if using Config.Target = true to access Body Cam menu
Config.Targets = {
    { coords = vector3(440.39,-987.45, 30.72), width = 1.5, height = 1.5 }, 
    { coords = vector3(-448.41, 6013.99, 31.29), width = 1.5, height = 1.5 }, 
}
```

{% endcode %}
