// Skeet Crosshair for OneTap Crack \\\ // Made by cr1pwalk#7306 & Morty#9999 & frisch#4693 & Konders & fallen#4008// // Enjoy \\ UI.AddColorPicker( "Scope color" ) function render() { var local = Entity.GetLocalPlayer(); var is_scope = Entity.GetProp(local, "DT_CSPlayer", "m_bIsScoped"); color =UI.GetColor( "Misc", "JAVASCRIPT", "Script items", "Scope color" ); if( is_scope ) { var screen_size = Render.GetScreenSize(); x = screen_size[0]; y = screen_size[1]; Convar.SetString("cl_drawhud", "0"); Render.GradientRect( x/2, y/2 - 165, 1, 150, 0, [ 55, 59, 68, 100 ], color ); Render.GradientRect( x/2 - 165, y/2, 150, 1, 1, [ 55, 59, 68, 100 ], color ); Render.GradientRect( x/2 + 16, y/2, 150, 1, 1, color, [ 55, 59, 68, 100 ]); Render.GradientRect( x/2, y/2 + 16, 1, 150, 0, color, [ 55, 59, 68, 100 ]); } else { Convar.SetString("cl_drawhud", "1"); } } Cheat.RegisterCallback("Draw", "render") SS: