SHOW:
|
|
- or go back to the newest paste.
1 | - | Credits to Kittylovers21345#6646 for the scripts |
1 | + | Credits to Fortin Slug Development Team#6646 for the scripts |
2 | Scripts to make roblox exploit with EasyExploits API: | |
3 | ||
4 | Clear button: | |
5 | ||
6 | fastColoredTextBox1.Text(""); | |
7 | ||
8 | using EasyExploits; | |
9 | ||
10 | Make API work: | |
11 | ||
12 | EasyExploits.Module module = new EasyExploits.Module(); | |
13 | ||
14 | Execute | |
15 | ||
16 | module.ExecuteScript(fastColoredTextBox1.Text); | |
17 | *Change the fastColoredTextBox1 to name of ur executor box* | |
18 | ||
19 | Attach: | |
20 | ||
21 | module.LaunchExploit(); | |
22 | ||
23 | Load File: | |
24 | ||
25 | //wassup | |
26 | OpenFileDialog opendialogfile = new OpenFileDialog(); | |
27 | opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt"; | |
28 | opendialogfile.FilterIndex = 2; | |
29 | opendialogfile.RestoreDirectory = true; | |
30 | if (opendialogfile.ShowDialog() != DialogResult.OK) | |
31 | return; | |
32 | try | |
33 | { | |
34 | fastColoredTextBox1.Text = ""; | |
35 | System.IO.Stream stream; | |
36 | if ((stream = opendialogfile.OpenFile()) == null) | |
37 | return; | |
38 | using (stream) | |
39 | this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName); | |
40 | } | |
41 | catch (Exception) | |
42 | { | |
43 | int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information); | |
44 | ||
45 | } | |
46 | ||
47 | Save File: | |
48 | ||
49 | First add on up: | |
50 | ||
51 | using System.IO | |
52 | ||
53 | And now this: | |
54 | ||
55 | ||
56 | SaveFileDialog sfd = new SaveFileDialog(); | |
57 | sfd.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua|All Files (*.*)|*.*"; | |
58 | if (sfd.ShowDialog() == DialogResult.OK) | |
59 | { | |
60 | Stream s = sfd.OpenFile(); | |
61 | StreamWriter sw = new StreamWriter(s); | |
62 | sw.Write(fastColoredTextBox1.Text); | |
63 | sw.Close(); | |
64 | } |