Engine Stands

local liftModel = `imp_prop_transmission_lift_01a`
local engineModel = `prop_car_engine_01`

engineStands = {
    testStand1 = {
        characterRestrictions = {
            'ABC:123',
        },
        
        jobRestrictions = {
            police = 2,
        },
        
        groupRestrictions = {
            police = 2,
        },

        position = vector3(-205.0,-1325.0,29.9),

        props = {
            stand = {
                position = vector3(-205.0,-1325.0,29.9),
                heading = 60.0,
                model = liftModel,
            },
            engine = {
                position = vector3(-205.0,-1325.0,31.0),
                heading = 60.0,
                model = engineModel,
            },      
        }
    },
}

Last updated