Page cover

📜Installation

Installing CB-ArtHeist is quick and easy—just follow our included step-by-step guide to get started in no time!

Inventory Items

Inventory images are included with the resource. Extract the images from the images folder and place them in the folder that contains the rest of your inventory images.

painting = { 
    name = 'painting', 
    label = 'Painting', 
    weight = 1000, 
    type = 'item', 
    image = 'painting.png', 
    unique = true, 
    useable = false, 
    shouldClose = true, 
    description = 'A painting from the Vinewood Art Museum' 
},

statue = { 
    name = 'statue', 
    label = 'Statue', 
    weight = 1000, 
    type = 'item', 
    image = 'statue.png', 
    unique = true, 
    useable = false, 
    shouldClose = true, 
    description = 'A statue from the Vinewood Art Museum' 
},

goldenegg = { 
    name = 'goldenegg', 
    label = 'Golden Egg', 
    weight = 1000, 
    type = 'item', 
    image = 'goldenegg.png', 
    unique = true, 
    useable = false, 
    shouldClose = true, 
    description = 'The Golden Egg from Vinewood Art Museum' 
},

pink_keycard = { 
    name = 'pink_keycard', 
    label = 'Pink Keycard', 
    weight = 1000, 
    type = 'item', 
    image = 'pink_keycard.png', 
    unique = true, 
    useable = false, 
    shouldClose = true, 
    description = 'A keycard to something...but you don\'t know what' 
},

Last updated