Fivem Prop List With Pictures -
Perfect for city roleplay, road closures, and event decoration.
Tune your cars for car meets. These props sit inside or on top of vehicles. fivem prop list with pictures
| Code | Visual |
| :--- | :--- |
| prop_speaker_01 | Picture: A massive black PA speaker (trunk setup). |
| prop_carjack_01 | Picture: A low-profile hydraulic floor jack, orange color. |
| prop_tyre_01 | Picture: A black Pirelli P-Zero tire with alloy rims attached. |
| prop_nitrous_01 | Picture: A blue NOS bottle with a pressure gauge and valve. |
| prop_cs_steering_wheel | Picture: A racing steering wheel (Detached from column, for show). | Perfect for city roleplay, road closures, and event
Players can view props with images inside FiveM using a menu: 💡 Pro tip: Use ox_lib or qb-menu to
-- Example: Open prop catalog
RegisterCommand('proplist', function()
local propData =
name = "Gym Bench", model = "prop_bench_01", image = "bench.png" ,
name = "Street Lamp", model = "prop_streetlight_01", image = "lamp.png"
TriggerEvent('ox_lib:showContext',
title = 'Prop Catalog',
options = propData,
onSelected = function(selected)
-- Spawn the selected prop
end
)
end)
💡 Pro tip: Use
ox_liborqb-menuto display images alongside text in menus.
Use these to build a garage scene.





