Advertisement
EpicGamer72

Roblox Exploit Scripts

Mar 27th, 2020
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. -- EasyExploits
  2. using EasyExploits;
  3. -- Execute
  4. module.ExecuteScript(fastColoredTextBox1.Text);
  5.  
  6. -- Open File
  7. OpenFileDialog opendialogfile = new OpenFileDialog();
  8. opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
  9. opendialogfile.FilterIndex = 2;
  10. opendialogfile.RestoreDirectory = true;
  11. if (opendialogfile.ShowDialog() != DialogResult.OK)
  12. return;
  13. try
  14. {
  15. fastColoredTextBox1.Text = "";
  16. System.IO.Stream stream;
  17. if ((stream = opendialogfile.OpenFile()) == null)
  18. return;
  19. using (stream)
  20. this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
  21. }
  22. catch(Exception ex)
  23. {
  24. int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
  25.  
  26. }
  27. -- Attach
  28. module.LaunchExploit();
  29. -- Clear
  30. fastcoloredtextbox1.Clear(); //Change fastcoloredtextbox1 to whatever text box u using.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement