[FREE] LEO Badge Props

Law Enforcement Badge Props

To be clear, I did not make these props, nor do I own them. The proper credit goes to Alex Ashfold and the EUP team for their fantastic work, which was found here: LSPDFR - EUP Badges

I was looking for badge props for an inventory script I’m using and thought that this could be useful to other servers. All you need to do is stream the props and call them in whatever script you’re using (i.e. using ox_inventory, it can be called as a prop for a usable item)

Download: Github

There are 15 badges in the pack:
LSPD | LSSD | BCSO | SAHP | SASP | RHPD | DPPD
LSIA | LSPP | FIB | DOA | PIA | IAA | NYSP | SASPA

Example of prop being used:

FIB_Image

5 Likes

Wish they’d share what animation they use in the LSPDFR screenshots :face_with_diagonal_mouth:

2 Likes

If you do get the animations for any of these please update your post with them if possible, if I find them I’ll drop them here as well! Thank you!

1 Like

there are a couple of scripts on git hub using this animation

'paper_1_rcm_alt1-9', 'player_one_dual-9'

https://github.com/twist0R/tw_policebadge/blob/main/client/client.lua#L26

2 Likes

Thank you!

I advise you to make the same props, only for the National Police in France, with the gendarmerie. You will have many buyers in my opinion !

1 Like

That does sound awesome, but like i said in the post these arent mine and I’ve no intention to sell anything i make :sweat_smile: maybe making those badges could be fun though, so i might give it a try

Seems to be slightly different than the one shown in LSPDFR website :face_with_diagonal_mouth: Maybe they’re custom

        local ped = PlayerPedId()
        local coords = GetEntityCoords(ped)
        local badgeProp = CreateObject(GetHashKey('prop_fib_badge'), coords.x, coords.y, coords.z + 0.2, true, true, true)
        local boneIndex = GetPedBoneIndex(ped, 28422)
        
        AttachEntityToEntity(badgeProp, ped, boneIndex, 0.065, 0.029, -0.035, 80.0, -1.90, 75.0, true, true, false, true, 1, true)
        RequestAnimDict('paper_1_rcm_alt1-9')
        TaskPlayAnim(ped, 'paper_1_rcm_alt1-9', 'player_one_dual-9', 8.0, -8, 10.0, 49, 0, 0, 0, 0)
        Citizen.Wait(3500)
		DeleteObject(badgeProp)
        ClearPedSecondaryTask(ped)

heres what i used for my flash badge :slight_smile:

2 Likes