lygelz23

CODES

Jan 12th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1.             OpenFileDialog opentxt = new OpenFileDialog();
  2.  
  3.             opentxt.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*";
  4.  
  5.             if (opentxt.ShowDialog() == DialogResult.OK)
  6.             {
  7.                 try
  8.                 {
  9.                     fastColoredTextBox1.Text = System.IO.File.ReadAllText(opentxt.FileName);
  10.                 }
  11.                 catch (Exception ex)
  12.                 {
  13.                     MessageBox.Show("Could not read file from disk, try again.");
  14.                 }
  15.             }
  16.  
  17.  
  18. =======================================================================================================================================
  19.  
  20.  
  21.              if (flatTextBox1.Text == "TypicalROBLOX30100tYpical")
  22.             {
  23.                 MessageBox.Show("Whitelisted <3");
  24.                 this.Hide();
  25.                 Form2 main = new Form2();
  26.                 main.Show();
  27.             }
  28.             else
  29.             {
  30.                 MessageBox.Show("Wrong Key Idiot");
  31.             }
  32.  
  33.  
  34. =======================================================================================================================================
  35. Process.Start("")
  36.  
  37. ScriptBox.Clear();
  38.  
  39. ExploitAPI name = new ExploitAPI();
  40. using WeAreDevs_API;
  41. api.SendLimitedLuaScript(fastColoredTextBox1.Text);
  42. api.LaunchExploit();
Add Comment
Please, Sign In to add comment