Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Hello, and welcome to a quick script list for ROBLOX Exploit video.
- // There will be listed some of the scripts needed in the video and the Main VS script!
- // EasyExploits Module
- EasyExploits.Module module = new EasyExploits.Module();
- // Execute Button
- module.ExecuteScript(fastColoredTextBox1.Text);
- // Open File Button (If it makes error, go up and text in "using System.IO;")
- OpenFileDialog opendialogfile = new OpenFileDialog();
- opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
- opendialogfile.FilterIndex = 2;
- opendialogfile.RestoreDirectory = true;
- if (opendialogfile.ShowDialog() != DialogResult.OK)
- return;
- try
- {
- fastColoredTextBox1.Text = "";
- System.IO.Stream stream;
- if ((stream = opendialogfile.OpenFile()) == null)
- return;
- using (stream)
- this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
- }
- catch(Exception ex)
- {
- int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- // Clear Button
- fastColoredTextBox1.Text = "";
- // Inject API Button
- module.LaunchExploit();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement