Skip to main content

Carryable Props System

The carryable props system allows players to physically carry items during robberies and store them in vehicle trunks. This guide covers how to configure the system and add new carryable props.

Configuration Structure

The carryable props system is configured in config/main.lua with three main sections:
  1. CarryProps Settings - Global enable/disable and vehicle interaction settings
  2. Props Definition - Individual prop configurations with models and animations
  3. AllowedVehicleClasses - Which vehicle types can store props

Global Settings

boolean
default:"true"
Enable or disable the entire carryable props system. When disabled, players cannot carry or store props in vehicles.
boolean
default:"true"
When true, players must target the trunk specifically to store props. When false, targeting anywhere on the vehicle works.
Setting to false is recommended for vehicles without traditional trunks (motorcycles, front-engine vehicles).
boolean
default:"true"
When true, players can only store props in unlocked vehicles. When false, props can be stored in any vehicle regardless of lock status.

Adding New Props

To add a new carryable prop, add an entry to the Props table within Config.CarryProps:

Prop Configuration Parameters

string
required
The item name that matches your inventory item. This should be the exact item name from your items configuration (e.g., x_television, x_microwave).Must match the item names defined in your tier’s LootTable or HighValueItems configuration.
string
required
The prop model to attach to the player when carrying. Use GTA V prop models without the hash.Common prop models:
  • prop_tv_03 - Television
  • prop_coffee_mac_02 - Coffee maker
  • v_res_printer - Printer
  • prop_microwave_1 - Microwave
  • prop_el_guitar_01 - Electric guitar
  • prop_rad_con_01 - Radio
  • prop_boombox_01 - Boombox
integer
required
The player bone ID to attach the prop to. Determines which part of the body holds the prop.Common bones:
  • 24817 - Left hand carry (single-handed items)
  • 18905 - Two-handed carry (larger items)
  • 28422 - Right hand
  • 57005 - Head
vector3
required
Position offset from the bone attachment point using vec3(x, y, z) format.Adjust these values to position the prop correctly:
  • X axis: Left (-) / Right (+)
  • Y axis: Forward (+) / Backward (-)
  • Z axis: Up (+) / Down (-)
Values typically range from -1.0 to 1.0 but may vary by prop size.
vector3
required
Rotation angles for the prop using vec3(pitch, roll, yaw) format in degrees.Adjust these values to orient the prop correctly:
  • Pitch: Tilt forward/backward (0-360)
  • Roll: Rotate left/right (0-360)
  • Yaw: Spin clockwise/counterclockwise (0-360)
table
required
Animation to play while carrying the prop.Contains two required fields:
  • dict - Animation dictionary
  • anim - Animation name
Common carry animations:
  • anim@heists@box_carry@ / idle - Standard box carry

Vehicle Class Configuration

Control which vehicle types can store carryable props using Config.AllowedVehicleClasses:

Available Vehicle Classes

Do not modify the VehicleClass table at the top of the config. This is a reference table used by the script.

Complete Examples

Example 1: Coffee Maker

Small appliance carried in left hand with standard box carry animation.

Example 2: Television

Large item requiring two-handed carry position with adjusted rotation for screen visibility.

Example 3: Electric Guitar

Long item with custom rotation to prevent clipping through the player model.

Example 4: Laptop

Compact electronic device carried in one hand.

Full Configuration Example


Tips for Adding Props

Finding Prop Models

  1. Use a prop spawner resource to test different models in-game
  2. Check the GTA V Props Database for prop names
  3. Look at existing house interiors to find suitable props
  4. Test props in-game before adding to production

Adjusting Attachment

  1. Start with similar existing prop configurations as templates
  2. Use small incremental changes (0.05-0.1) when adjusting offsets
  3. Test both walking and running animations with the prop
  4. Ensure props don’t clip through walls or the player model
  5. Check prop visibility from third-person camera angles

Animation Selection

The anim@heists@box_carry@ dictionary with idle animation works for most props, but consider alternatives:
  • Heavy items: Use slower, more strained animations
  • Fragile items: Use careful, steady animations
  • Long items: Ensure animation supports the prop length
  • One-handed items: Use animations with free hand movement

Vehicle Storage Testing

  1. Test with locked and unlocked vehicles if UnlockedVehiclesOnly = true
  2. Verify trunk targeting works correctly with TrunkTargetOnly = true
  3. Test with front-engine vehicles (some have front trunks)
  4. Ensure props can be retrieved from trunks after storage
  5. Check that disallowed vehicle classes properly reject storage

Item Integration

  1. Ensure item names match exactly between:
    • Carryable props configuration
    • Tier loot tables
    • Inventory items configuration
  2. Add appropriate item images to your inventory
  3. Set reasonable item weights for gameplay balance
  4. Consider making carryable props non-stackable