Bodycam
The bodycam feature allows players to activate a bodycam that other officers can view in real-time.
Adding the bodycam item to your inventory
ox_inventory (@ox_inventory/data/items.lua)
['bodycam'] = {
label = 'Bodycam',
weight = 300,
stack = false,
close = true,
allowArmed = true,
consume = 0,
client = { event = 'redutzu-mdt:client:toggle-bodycam-state', image = 'bodycam.png' },
description = 'Let other players see your body with the most advanced bodycam on FiveM'
}qb-inventory (@qb-core/shared/items.lua)
bodycam = {
name = 'bodycam',
label = 'Bodycam',
weight = 300,
type = 'item',
image = 'bodycam.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Let other players see your body with the most advanced bodycam on FiveM'
}qs-inventory (@qs-inventory/shared/items.lua)
Modifying Bodycam Functionality
Server-Side Export
Last updated