local color_black = Color( 0, 0, 0 )
local color_white = Color( 255, 255, 255 )
local mr = math.random
hook.Add( 'HUDPaint', 'smallTest', function()
local color_fun = Color( mr( 40, 240 ), mr( 40, 240 ), mr( 40, 240 ) )
local health = LocalPlayer():Health()
draw.SimpleTextOutlined( 'Health: ' .. health .. '%', 'Default', 15, 15, color_fun, 0, 0, 1, color_black )
draw.SimpleTextOutlined( 'so, this is Russia, there is a lot of drug addiction', 'Default', 15, 30, color_white, 0, 0, 1, color_black )
end )