Advertisement
EpicGamer72

How to make a Roblox exploit (EasyExploits)

Apr 4th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. Open File:
  2. OpenFileDialog ofd = new OpenFileDialog();
  3. ofd.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua";
  4.  
  5. if (ofd.ShowDialog() == DialogResult.OK)
  6. {
  7. fastColoredTextBox1.Text = File.ReadAllText(ofd.FileName);
  8. }
  9. Save File:
  10. SaveFileDialog sfd = new SaveFileDialog();
  11. sfd.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua";
  12.  
  13. if (sfd.ShowDialog() == DialogResult.OK)
  14. {
  15. Stream s = sfd.OpenFile();
  16. StreamWriter sw = new StreamWriter(s);
  17. }
  18. Execute File:
  19. OpenFileDialog ef = new OpenFileDialog();
  20. ef.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua";
  21.  
  22. if (ef.ShowDialog() == DialogResult.OK)
  23. {
  24. module.ExecuteScript(ef.FileName);
  25. }
  26. Easyexploits:
  27. Using EasyExploits;
  28.  
  29. EasyExploits.Module module = new EasyExploits.Module
  30.  
  31. Login:
  32. if (textBox1.Text == "Test1")
  33. if(textBox2.Text == "Test2")
  34. {
  35. MessageBox.Show("Thanks for using this exploit");
  36. this.Hide();
  37. Form2 main = new Form2();
  38. main.Show();
  39. }
  40. else
  41. {
  42. MessageBox.Show("Invalid");
  43. }
  44.  
  45. Ty For Watching see ya in the next one!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement