Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Credits to Kittylovers21345#6646 for the scripts
- Scripts to make roblox exploit with EasyExploits API:
- Clear button:
- fastColoredTextBox1.Text("");
- using EasyExploits;
- Make API work:
- EasyExploits.Module module = new EasyExploits.Module();
- Execute
- module.ExecuteScript(fastColoredTextBox1.Text);
- *Change the fastColoredTextBox1 to name of ur executor box*
- Attach:
- module.LaunchExploit();
- Load File:
- //wassup
- 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)
- {
- int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- Save File:
- First add on up:
- using System.IO
- And now this:
- SaveFileDialog sfd = new SaveFileDialog();
- sfd.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua|All Files (*.*)|*.*";
- if (sfd.ShowDialog() == DialogResult.OK)
- {
- Stream s = sfd.OpenFile();
- StreamWriter sw = new StreamWriter(s);
- sw.Write(fastColoredTextBox1.Text);
- sw.Close();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement