# Banktruck Robbery

## Preview

{% embed url="<https://www.youtube.com/watch?v=FQFrmJ88YI0>" %}
Banktruck robbery preview video
{% endembed %}

## Features

• Item needed to rob

• Police Alerts

• Notifications

• Guards Protecting

• Configurable loot

• Unique System

## Add new items

When adding new items you can use the math.random function for the amount a player can receive are give a specific amount of items the player will receive. For items that have a "worth" you can privide the min and max amount, here you can not use a specific amount unless making min and max the exact same amount.

```lua
Config.Rewards = {
    {item = 'markedbills', worth = {min = 1, max = 10}, amount = math.random(1, 3)},
    {item = 'goldbar', amount = 4}
}
```
