Page cover image

Banktruck Robbery

Do you want to make some quick money? Go rob a banktruck!

Preview

Banktruck robbery preview video

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.

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

Last updated