private void autoattach_Tick(object sender, EventArgs e)
 {
     Thread.Sleep(7000);
     if (Arch.isRobloxOn())
     {
         if (!dll.isArchAttached())
         {
             dll.Attach();
         }
         else
         {
             return;
         }
     }
 }