local mat = Material("сам эффект")
mat:SetFloat("$alpha",0.8)
hook.Add("HUDPaint","wepmat",function()
local player = LocalPlayer()
if player:Health() < 60 and player:HasWeapon("cc2018_dc17m") then
render.SetMaterial(mat)
render.DrawScreenQuad()
end
end)