private void startButton_Click(object sender, EventArgs e)
 {
     if (tokenTextBox.Text != "")
     {
         _bot.Connection(tokenTextBox.Text);
         tokenTextBox.BackColor = Color.White;
     }
     else
     {
         tokenTextBox.BackColor = Color.IndianRed;
     }
 }