Advertisement
Ililili

Make A Roblox Exploit with EasyExploits.Dll

Jan 28th, 2020
3,533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. First, View Codes -
  2.  
  3. EasyExploits.Module module = new EasyExploits.Module();
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10. Open File -
  11.  
  12. OpenFileDialog opendialogfile = new OpenFileDialog();
  13. opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
  14. opendialogfile.FilterIndex = 2;
  15. opendialogfile.RestoreDirectory = true;
  16. if (opendialogfile.ShowDialog() != DialogResult.OK)
  17. return;
  18. try
  19. {
  20. fastColoredTextBox1.Text = "";
  21. System.IO.Stream stream;
  22. if ((stream = opendialogfile.OpenFile()) == null)
  23. return;
  24. using (stream)
  25. this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
  26. }
  27. catch(Exception ex)
  28. {
  29. int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
  30.  
  31. }
  32.  
  33. Clear -
  34.  
  35. fastColoredTextBox1.Text = "";
  36.  
  37. Execute Script -
  38.  
  39. module.ExecuteScript(fastColoredtextBox1.Text);
  40.  
  41. Inject -
  42.  
  43. module.LaunchExploit();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement