So i have managed to try some things but no luck!
i have tried these 2 hooks but nothing is working, placing them in lua/autorun/server
// 1
hook.Add( "CanDropWeapon", "DisableCPDrops", function( _p, wep )
if _p:isCP() then return false
end )
// 2
hook.Add( "CanDropWeapon", "DisableCPDrop", function( _p, wep ) return false !_p:isCP()
end )
any help would be amazing thanks!