local disable = {
['CHudHealth'] =true,
['CHudBattery'] =true,
['CHudSuitPower'] =true,
['CHudAmmo'] =true,
['CHudSecondaryAmmo'] =true,
['DarkRP_LocalPlayerHUD'] =true,
['DarkRP_Hungermod'] =true,
['DarkRP_LockdownHUD'] =true,
['CHudVoiceSelfStatus'] =true,
['CHudVoiceStatus'] =true,
}
hook.Add( "HUDShouldDraw", "HideHUD", function( name )
if disable[name] then
return false
end
end)