local players = player.GetAll()
scrubs = player.GetAll() local hitLab = vgui.Create( "DLabel", hitFrame ) hitLab:SetPos( hitFrame:GetWide() / 2 - 87 / 2, 35 ) hitLab:SetFont( "ChatFont" ) hitLab:SetTextColor( Color( 51, 204, 255, 255 ) ) hitLab:SetText( "Place Hit On:" ) hitLab:SizeToContents() local hitBox = vgui.Create( "DComboBox", hitFrame ) hitBox:SetPos( hitFrame:GetWide() / 2 - 50, 55 ) hitBox:SetSize( 100, 20 ) hitBox:AddChoice( scrubs )
