Advertisement
Vermin_YouTube

Visual Studio 2019: How to make a ROBLOX Exploit!

Jul 23rd, 2020
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.38 KB | None | 0 0
  1. // Hello, and welcome to a quick script list for ROBLOX Exploit video.
  2. // There will be listed some of the scripts needed in the video and the Main VS script!
  3.  
  4.  
  5. // EasyExploits Module
  6.  
  7. EasyExploits.Module module = new EasyExploits.Module();
  8.  
  9. // Execute Button
  10.  
  11. module.ExecuteScript(fastColoredTextBox1.Text);
  12.  
  13. // Open File Button (If it makes error, go up and text in "using System.IO;")
  14.  
  15. OpenFileDialog opendialogfile = new OpenFileDialog();
  16.             opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
  17.             opendialogfile.FilterIndex = 2;
  18.             opendialogfile.RestoreDirectory = true;
  19.             if (opendialogfile.ShowDialog() != DialogResult.OK)
  20.                 return;
  21.             try
  22.             {
  23.                 fastColoredTextBox1.Text = "";
  24.                 System.IO.Stream stream;
  25.                 if ((stream = opendialogfile.OpenFile()) == null)
  26.                     return;
  27.                 using (stream)
  28.                     this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
  29.             }
  30.             catch(Exception ex)
  31.             {
  32.                 int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
  33.  
  34.             }
  35.  
  36. // Clear Button
  37.  
  38. fastColoredTextBox1.Text = "";
  39.  
  40. // Inject API Button
  41.  
  42. module.LaunchExploit();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement