-- health
draw.RoundedBox( 5, barX, BRS_HUD.y+60, barW, 10, Color(45,45,45,200) )
lerpHealth = Lerp( RealFrameTime()*2, lerpHealth, LocalPlayer():Health() )
draw.RoundedBox( 5, barX, BRS_HUD.y+60, (barW)*math.Clamp( (lerpHealth/LocalPlayer():GetMaxHealth()), 0, 1 ), 10...