· 6 years ago · Feb 19, 2020, 05:20 PM
1using System;
2using System.ComponentModel;
3using System.Diagnostics;
4using System.Drawing;
5using System.IO;
6using System.Net;
7using System.Runtime.InteropServices;
8using System.Windows.Forms;
9using EasyExploits;
10using FurkOS.Properties;
11using Microsoft.Win32;
12
13namespace FurkOS
14{
15 // Token: 0x02000002 RID: 2
16 public partial class Form1 : Form
17 {
18 // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
19 private void exec(string script)
20 {
21 this.api.ExecuteScript(script);
22 }
23
24 // Token: 0x06000002 RID: 2
25 [DllImport("user32.dll")]
26 public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
27
28 // Token: 0x06000003 RID: 3
29 [DllImport("user32.dll")]
30 public static extern bool ReleaseCapture();
31
32 // Token: 0x06000004 RID: 4
33 [DllImport("Gdi32.dll")]
34 private static extern IntPtr CreateRoundRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, int nWidthEllipse, int nHeightEllipse);
35
36 // Token: 0x06000005 RID: 5 RVA: 0x0000205E File Offset: 0x0000025E
37 private void dragUi(object sender, MouseEventArgs e)
38 {
39 if (e.Button == MouseButtons.Left)
40 {
41 Form1.ReleaseCapture();
42 Form1.SendMessage(base.Handle, 161, 2, 0);
43 }
44 }
45
46 // Token: 0x06000006 RID: 6 RVA: 0x00002088 File Offset: 0x00000288
47 public Form1()
48 {
49 this.InitializeComponent();
50 base.Region = Region.FromHrgn(Form1.CreateRoundRectRgn(0, 0, base.Width, base.Height, 5, 5));
51 if (!Directory.Exists(Application.StartupPath + "/scripts"))
52 {
53 Directory.CreateDirectory(Application.StartupPath + "/scripts");
54 }
55 }
56
57 // Token: 0x06000007 RID: 7 RVA: 0x0000212C File Offset: 0x0000032C
58 private void scriptBoxLoad()
59 {
60 this.listBox1.Items.Clear();
61 DirectoryInfo directoryInfo = new DirectoryInfo(Application.StartupPath + "/scripts");
62 FileInfo[] files = directoryInfo.GetFiles("*.txt");
63 FileInfo[] files2 = directoryInfo.GetFiles("*.lua");
64 foreach (FileInfo fileInfo in files)
65 {
66 this.listBox1.Items.Add(fileInfo.Name);
67 }
68 foreach (FileInfo fileInfo2 in files2)
69 {
70 this.listBox1.Items.Add(fileInfo2.Name);
71 }
72 }
73
74 // Token: 0x06000008 RID: 8 RVA: 0x000021D0 File Offset: 0x000003D0
75 private void Form1_Load(object sender, EventArgs e)
76 {
77 try
78 {
79 RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);
80 string friendlyName = AppDomain.CurrentDomain.FriendlyName;
81 if (registryKey.GetValue(friendlyName) == null)
82 {
83 registryKey.SetValue(friendlyName, 11001, RegistryValueKind.DWord);
84 }
85 this.Monaco.Url = new Uri(string.Format("file:///{0}/bin/Monaco/Monaco.html", Application.StartupPath));
86 }
87 catch (Exception ex)
88 {
89 MessageBox.Show("Error loading Monaco Editor! Error: " + ex.Message + "\nThis error has been copied. Please send to Zesty.", "", MessageBoxButtons.OK);
90 Clipboard.SetText(ex.Message);
91 Application.ExitThread();
92 }
93 this.scriptBoxLoad();
94 }
95
96 // Token: 0x06000009 RID: 9 RVA: 0x00002288 File Offset: 0x00000488
97 private void Label2_Click(object sender, EventArgs e)
98 {
99 base.WindowState = FormWindowState.Minimized;
100 }
101
102 // Token: 0x0600000A RID: 10 RVA: 0x00002291 File Offset: 0x00000491
103 private void Label1_Click(object sender, EventArgs e)
104 {
105 Application.Exit();
106 }
107
108 // Token: 0x0600000B RID: 11 RVA: 0x00002298 File Offset: 0x00000498
109 private void Button2_Click(object sender, EventArgs e)
110 {
111 HtmlDocument document = this.Monaco.Document;
112 string scriptName = "GetText";
113 object[] array = new string[0];
114 object[] args = array;
115 string script = document.InvokeScript(scriptName, args).ToString();
116 this.exec(script);
117 }
118
119 // Token: 0x0600000C RID: 12 RVA: 0x000022D3 File Offset: 0x000004D3
120 private void Button1_Click(object sender, EventArgs e)
121 {
122 this.Monaco.Document.InvokeScript("SetText", new object[]
123 {
124 ""
125 });
126 }
127
128 // Token: 0x0600000D RID: 13 RVA: 0x000022FC File Offset: 0x000004FC
129 private void Button4_Click(object sender, EventArgs e)
130 {
131 if (this.open.ShowDialog() == DialogResult.OK)
132 {
133 string text = File.ReadAllText(this.open.FileName);
134 HtmlDocument document = this.Monaco.Document;
135 string scriptName = "SetText";
136 object[] array = new string[]
137 {
138 text
139 };
140 object[] args = array;
141 document.InvokeScript(scriptName, args);
142 }
143 }
144
145 // Token: 0x0600000E RID: 14 RVA: 0x00002354 File Offset: 0x00000554
146 private void Button3_Click(object sender, EventArgs e)
147 {
148 SaveFileDialog saveFileDialog = new SaveFileDialog();
149 saveFileDialog.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
150 saveFileDialog.Title = "Save Script";
151 if (saveFileDialog.ShowDialog() != DialogResult.OK)
152 {
153 return;
154 }
155 try
156 {
157 HtmlDocument document = this.Monaco.Document;
158 string scriptName = "GetText";
159 object[] array = new string[0];
160 object[] args = array;
161 string value = document.InvokeScript(scriptName, args).ToString();
162 StreamWriter streamWriter = new StreamWriter(File.Create(saveFileDialog.FileName));
163 streamWriter.Write(value);
164 streamWriter.Dispose();
165 }
166 catch
167 {
168 MessageBox.Show("An unexpected error occured!", "Oof");
169 }
170 }
171
172 // Token: 0x0600000F RID: 15 RVA: 0x000023F4 File Offset: 0x000005F4
173 private void Button5_Click(object sender, EventArgs e)
174 {
175 this.api.LaunchExploit();
176 }
177
178 // Token: 0x06000010 RID: 16 RVA: 0x00002401 File Offset: 0x00000601
179 private void Button6_Click(object sender, EventArgs e)
180 {
181 this.furkTabs.SelectTab("scriptHub");
182 }
183
184 // Token: 0x06000011 RID: 17 RVA: 0x00002413 File Offset: 0x00000613
185 private void Button7_Click(object sender, EventArgs e)
186 {
187 this.furkTabs.SelectTab("execPage");
188 }
189
190 // Token: 0x06000012 RID: 18 RVA: 0x00002425 File Offset: 0x00000625
191 private void Button8_Click(object sender, EventArgs e)
192 {
193 this.furkTabs.SelectTab("scriptHub");
194 }
195
196 // Token: 0x06000013 RID: 19 RVA: 0x00002438 File Offset: 0x00000638
197 private void PictureBox2_Click(object sender, EventArgs e)
198 {
199 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yNwzgwTN");
200 this.exec(script);
201 }
202
203 // Token: 0x06000014 RID: 20 RVA: 0x0000245D File Offset: 0x0000065D
204 private void button9_Click(object sender, EventArgs e)
205 {
206 this.furkTabs.SelectTab("scriptHub");
207 }
208
209 // Token: 0x06000015 RID: 21 RVA: 0x0000246F File Offset: 0x0000066F
210 private void pictureBox3_Click(object sender, EventArgs e)
211 {
212 this.furkTabs.SelectTab("PFTab");
213 }
214
215 // Token: 0x06000016 RID: 22 RVA: 0x00002481 File Offset: 0x00000681
216 private void button8_Click_1(object sender, EventArgs e)
217 {
218 Process.Start("https://wearedevs.net/exploits");
219 }
220
221 // Token: 0x06000017 RID: 23 RVA: 0x00002490 File Offset: 0x00000690
222 private void pictureBox4_Click(object sender, EventArgs e)
223 {
224 string script = this.webLoader.DownloadString("https://pastebin.com/raw/qMcbuEuJ");
225 this.exec(script);
226 }
227
228 // Token: 0x06000018 RID: 24 RVA: 0x000024B8 File Offset: 0x000006B8
229 private void pictureBox5_Click(object sender, EventArgs e)
230 {
231 string script = this.webLoader.DownloadString("https://pastebin.com/raw/kmWxeu8P");
232 this.exec(script);
233 }
234
235 // Token: 0x06000019 RID: 25 RVA: 0x000024E0 File Offset: 0x000006E0
236 private void pictureBox6_Click(object sender, EventArgs e)
237 {
238 string script = this.webLoader.DownloadString("https://pastebin.com/raw/xyvE5K4q");
239 this.exec(script);
240 }
241
242 // Token: 0x0600001A RID: 26 RVA: 0x00002508 File Offset: 0x00000708
243 private void pictureBox8_Click(object sender, EventArgs e)
244 {
245 string script = this.webLoader.DownloadString("https://pastebin.com/raw/154RJ1mv");
246 this.exec(script);
247 }
248
249 // Token: 0x0600001B RID: 27 RVA: 0x00002530 File Offset: 0x00000730
250 private void pictureBox7_Click(object sender, EventArgs e)
251 {
252 string script = this.webLoader.DownloadString("https://pastebin.com/raw/dGmwtKFZ");
253 this.exec(script);
254 }
255
256 // Token: 0x0600001C RID: 28 RVA: 0x00002558 File Offset: 0x00000758
257 private void pictureBox9_Click(object sender, EventArgs e)
258 {
259 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tDS58RkZ");
260 this.exec(script);
261 }
262
263 // Token: 0x0600001D RID: 29 RVA: 0x00002580 File Offset: 0x00000780
264 private void pictureBox10_Click(object sender, EventArgs e)
265 {
266 string script = this.webLoader.DownloadString("https://pastebin.com/raw/3qs77TTk");
267 this.exec(script);
268 MessageBox.Show("Script Executed, just deploy and shoot!");
269 }
270
271 // Token: 0x0600001E RID: 30 RVA: 0x000025B0 File Offset: 0x000007B0
272 private void pictureBox11_Click(object sender, EventArgs e)
273 {
274 string script = this.webLoader.DownloadString("https://pastebin.com/raw/61vdJN2e");
275 this.exec(script);
276 MessageBox.Show("GUI is really broken right now, so use Aimbot and Hitbox only");
277 }
278
279 // Token: 0x0600001F RID: 31 RVA: 0x000025E0 File Offset: 0x000007E0
280 private void pictureBox12_Click(object sender, EventArgs e)
281 {
282 string script = this.webLoader.DownloadString("https://pastebin.com/raw/f1whedKk");
283 this.exec(script);
284 }
285
286 // Token: 0x06000020 RID: 32 RVA: 0x00002608 File Offset: 0x00000808
287 private void pictureBox13_Click(object sender, EventArgs e)
288 {
289 string script = this.webLoader.DownloadString("https://pastebin.com/raw/hz4nAqXT");
290 this.exec(script);
291 }
292
293 // Token: 0x06000021 RID: 33 RVA: 0x00002630 File Offset: 0x00000830
294 private void pictureBox14_Click(object sender, EventArgs e)
295 {
296 string script = this.webLoader.DownloadString("https://pastebin.com/raw/8Kmpe1xr");
297 this.exec(script);
298 }
299
300 // Token: 0x06000022 RID: 34 RVA: 0x00002655 File Offset: 0x00000855
301 private void label5_Click(object sender, EventArgs e)
302 {
303 Process.Start("https://www.roblox.com/games/3956818381/NEW-SWORDS-Ninja-Legends");
304 }
305
306 // Token: 0x06000023 RID: 35 RVA: 0x00002664 File Offset: 0x00000864
307 private void button9_Click_1(object sender, EventArgs e)
308 {
309 Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
310 for (int i = 0; i < processesByName.Length; i++)
311 {
312 processesByName[i].Kill();
313 }
314 }
315
316 // Token: 0x06000024 RID: 36 RVA: 0x00002692 File Offset: 0x00000892
317 private void label4_Click(object sender, EventArgs e)
318 {
319 Process.Start("https://www.roblox.com/games/402122991/Redwood-Prison");
320 }
321
322 // Token: 0x06000025 RID: 37 RVA: 0x0000269F File Offset: 0x0000089F
323 private void label6_Click(object sender, EventArgs e)
324 {
325 Process.Start("https://www.roblox.com/games/155615604/Prison-Life-Cars-fixed");
326 }
327
328 // Token: 0x06000026 RID: 38 RVA: 0x000026AC File Offset: 0x000008AC
329 private void label7_Click(object sender, EventArgs e)
330 {
331 Process.Start("https://www.roblox.com/games/3486025575/X2-Magnet-Simulator");
332 }
333
334 // Token: 0x06000027 RID: 39 RVA: 0x000026B9 File Offset: 0x000008B9
335 private void label8_Click(object sender, EventArgs e)
336 {
337 Process.Start("https://www.roblox.com/games/13822889/Lumber-Tycoon-2");
338 }
339
340 // Token: 0x06000028 RID: 40 RVA: 0x000026C6 File Offset: 0x000008C6
341 private void label9_Click(object sender, EventArgs e)
342 {
343 Process.Start("https://www.roblox.com/games/171391948/Hot-Wheels-Vehicle-Simulator");
344 }
345
346 // Token: 0x06000029 RID: 41 RVA: 0x000026D3 File Offset: 0x000008D3
347 private void label10_Click(object sender, EventArgs e)
348 {
349 Process.Start("https://www.roblox.com/games/3652625463/X2-Coins-Lifting-Simulator");
350 }
351
352 // Token: 0x0600002A RID: 42 RVA: 0x000026E0 File Offset: 0x000008E0
353 private void label11_Click(object sender, EventArgs e)
354 {
355 Process.Start("https://www.roblox.com/games/3527629287/BIG-Paintball");
356 }
357
358 // Token: 0x0600002B RID: 43 RVA: 0x000026ED File Offset: 0x000008ED
359 private void label12_Click(object sender, EventArgs e)
360 {
361 Process.Start("https://www.roblox.com/games/2377868063/Strucid-BETA");
362 }
363
364 // Token: 0x0600002C RID: 44 RVA: 0x000026FA File Offset: 0x000008FA
365 private void label13_Click(object sender, EventArgs e)
366 {
367 Process.Start("https://www.roblox.com/games/914010731/1M-FAVS-Ro-Ghoul-ALPHA");
368 }
369
370 // Token: 0x0600002D RID: 45 RVA: 0x00002707 File Offset: 0x00000907
371 private void label14_Click(object sender, EventArgs e)
372 {
373 Process.Start("https://www.roblox.com/games/1537690962/Bee-Swarm-Simulator");
374 }
375
376 // Token: 0x0600002E RID: 46 RVA: 0x00002714 File Offset: 0x00000914
377 private void label15_Click(object sender, EventArgs e)
378 {
379 Process.Start("https://www.roblox.com/games/3376584594/Flight-Simulator");
380 }
381
382 // Token: 0x0600002F RID: 47 RVA: 0x00002721 File Offset: 0x00000921
383 private void label16_Click(object sender, EventArgs e)
384 {
385 }
386
387 // Token: 0x06000030 RID: 48 RVA: 0x00002723 File Offset: 0x00000923
388 private void Monaco_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
389 {
390 }
391
392 // Token: 0x06000031 RID: 49 RVA: 0x00002725 File Offset: 0x00000925
393 private void flowLayoutPanel1_Paint(object sender, PaintEventArgs e)
394 {
395 }
396
397 // Token: 0x06000032 RID: 50 RVA: 0x00002728 File Offset: 0x00000928
398 private void pictureBox2_Click_1(object sender, EventArgs e)
399 {
400 string script = this.webLoader.DownloadString("https://pastebin.com/raw/62GBpaJN");
401 this.exec(script);
402 }
403
404 // Token: 0x06000033 RID: 51 RVA: 0x0000274D File Offset: 0x0000094D
405 private void label18_Click(object sender, EventArgs e)
406 {
407 Process.Start("https://www.roblox.com/games/4036494886/SANTA-BOSS-2X-Gun-Simulator");
408 }
409
410 // Token: 0x06000034 RID: 52 RVA: 0x0000275A File Offset: 0x0000095A
411 private void label19_Click(object sender, EventArgs e)
412 {
413 Process.Start("https://www.roblox.com/games/2818280787/UPDATE-1-Pet-Simulator-2");
414 }
415
416 // Token: 0x06000035 RID: 53 RVA: 0x00002768 File Offset: 0x00000968
417 private void pictureBox15_Click(object sender, EventArgs e)
418 {
419 string script = this.webLoader.DownloadString("https://pastebin.com/raw/QhtJiZLi");
420 this.exec(script);
421 MessageBox.Show("Once you enable autofarm, do NOT disable it, it will break the autofarm.");
422 }
423
424 // Token: 0x06000036 RID: 54 RVA: 0x00002798 File Offset: 0x00000998
425 private void pictureBox16_Click(object sender, EventArgs e)
426 {
427 string script = this.webLoader.DownloadString("https://pastebin.com/raw/BEZU0bMs");
428 this.exec(script);
429 }
430
431 // Token: 0x06000037 RID: 55 RVA: 0x000027BD File Offset: 0x000009BD
432 private void label20_Click(object sender, EventArgs e)
433 {
434 Process.Start("https://www.roblox.com/games/4476549181/Pet-Ranch-Simulator-2");
435 }
436
437 // Token: 0x06000038 RID: 56 RVA: 0x000027CC File Offset: 0x000009CC
438 private void pictureBox17_Click(object sender, EventArgs e)
439 {
440 string script = this.webLoader.DownloadString("https://pastebin.com/raw/1xJQ8T5b");
441 this.exec(script);
442 }
443
444 // Token: 0x06000039 RID: 57 RVA: 0x000027F1 File Offset: 0x000009F1
445 private void label21_Click(object sender, EventArgs e)
446 {
447 Process.Start("https://www.roblox.com/games/1735775055/Iron-Man-Simulator");
448 }
449
450 // Token: 0x0600003A RID: 58 RVA: 0x00002800 File Offset: 0x00000A00
451 private void pictureBox18_Click(object sender, EventArgs e)
452 {
453 string script = this.webLoader.DownloadString("https://pastebin.com/raw/kFwWbXUt");
454 this.exec(script);
455 }
456
457 // Token: 0x0600003B RID: 59 RVA: 0x00002825 File Offset: 0x00000A25
458 private void label22_Click(object sender, EventArgs e)
459 {
460 Process.Start("https://www.roblox.com/games/855499080/SKYWARS");
461 }
462
463 // Token: 0x0600003C RID: 60 RVA: 0x00002832 File Offset: 0x00000A32
464 private void label23_Click(object sender, EventArgs e)
465 {
466 Process.Start("https://www.roblox.com/games/1262182609/BOOGA-BOOGA-v-C1-41");
467 }
468
469 // Token: 0x0600003D RID: 61 RVA: 0x00002840 File Offset: 0x00000A40
470 private void pictureBox19_Click(object sender, EventArgs e)
471 {
472 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yigKxDrK");
473 this.exec(script);
474 }
475
476 // Token: 0x0600003E RID: 62 RVA: 0x00002868 File Offset: 0x00000A68
477 private void pictureBox20_Click(object sender, EventArgs e)
478 {
479 Process.Start("https://www.youtube.com/channel/UChMPXNYurxjYI_cpsPLYPkA");
480 string script = this.webLoader.DownloadString("https://pastebin.com/raw/sAc9Zt0j");
481 this.exec(script);
482 }
483
484 // Token: 0x0600003F RID: 63 RVA: 0x00002898 File Offset: 0x00000A98
485 private void label24_Click(object sender, EventArgs e)
486 {
487 Process.Start("https://web.roblox.com/games/1373038156/3-X-EVENT-Woodchopping-Simulator");
488 }
489
490 // Token: 0x06000040 RID: 64 RVA: 0x000028A8 File Offset: 0x00000AA8
491 private void pictureBox21_Click(object sender, EventArgs e)
492 {
493 string script = this.webLoader.DownloadString("https://pastebin.com/raw/cnLABpj3");
494 this.exec(script);
495 }
496
497 // Token: 0x06000041 RID: 65 RVA: 0x000028CD File Offset: 0x00000ACD
498 private void label25_Click(object sender, EventArgs e)
499 {
500 Process.Start("https://web.roblox.com/games/3925890721/Robot-Inc-Evil-Factory");
501 }
502
503 // Token: 0x06000042 RID: 66 RVA: 0x000028DC File Offset: 0x00000ADC
504 private void pictureBox22_Click(object sender, EventArgs e)
505 {
506 string script = this.webLoader.DownloadString("https://pastebin.com/raw/0BEnnwC4");
507 this.exec(script);
508 MessageBox.Show("Ps. You have to re execute everytime there is a new giant.");
509 }
510
511 // Token: 0x06000043 RID: 67 RVA: 0x0000290C File Offset: 0x00000B0C
512 private void label26_Click(object sender, EventArgs e)
513 {
514 Process.Start("https://web.roblox.com/games/4003872968/Giant-Survival-Remastered");
515 }
516
517 // Token: 0x06000044 RID: 68 RVA: 0x0000291C File Offset: 0x00000B1C
518 private void pictureBox23_Click(object sender, EventArgs e)
519 {
520 string script = this.webLoader.DownloadString("https://pastebin.com/raw/AcHFc885");
521 this.exec(script);
522 MessageBox.Show("Click on F8 to close the GUI!");
523 }
524
525 // Token: 0x06000045 RID: 69 RVA: 0x0000294C File Offset: 0x00000B4C
526 private void label27_Click(object sender, EventArgs e)
527 {
528 Process.Start("https://web.roblox.com/games/301549746/NEW-CASE-Counter-Blox");
529 }
530
531 // Token: 0x06000046 RID: 70 RVA: 0x0000295C File Offset: 0x00000B5C
532 private void pictureBox24_Click(object sender, EventArgs e)
533 {
534 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Yd2vKxPv");
535 this.exec(script);
536 }
537
538 // Token: 0x06000047 RID: 71 RVA: 0x00002981 File Offset: 0x00000B81
539 private void label28_Click(object sender, EventArgs e)
540 {
541 Process.Start("https://web.roblox.com/games/286090429/Arsenal");
542 }
543
544 // Token: 0x06000048 RID: 72 RVA: 0x00002990 File Offset: 0x00000B90
545 private void pictureBox25_Click(object sender, EventArgs e)
546 {
547 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ccj7htSL");
548 this.exec(script);
549 }
550
551 // Token: 0x06000049 RID: 73 RVA: 0x000029B5 File Offset: 0x00000BB5
552 private void label29_Click(object sender, EventArgs e)
553 {
554 Process.Start("https://web.roblox.com/games/292439477/GERMAN-SPACE-GUNS-Phantom-Forces");
555 }
556
557 // Token: 0x0600004A RID: 74 RVA: 0x000029C4 File Offset: 0x00000BC4
558 private void pictureBox26_Click(object sender, EventArgs e)
559 {
560 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YYVLbzVg");
561 this.exec(script);
562 }
563
564 // Token: 0x0600004B RID: 75 RVA: 0x000029E9 File Offset: 0x00000BE9
565 private void label30_Click(object sender, EventArgs e)
566 {
567 Process.Start("https://web.roblox.com/games/734159876/SharkBite");
568 }
569
570 // Token: 0x0600004C RID: 76 RVA: 0x000029F8 File Offset: 0x00000BF8
571 private void pictureBox27_Click(object sender, EventArgs e)
572 {
573 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Hxwnxqbh");
574 this.exec(script);
575 }
576
577 // Token: 0x0600004D RID: 77 RVA: 0x00002A1D File Offset: 0x00000C1D
578 private void label31_Click(object sender, EventArgs e)
579 {
580 Process.Start("https://web.roblox.com/games/1600503/Apocalypse-Rising");
581 }
582
583 // Token: 0x0600004E RID: 78 RVA: 0x00002A2C File Offset: 0x00000C2C
584 private void pictureBox28_Click(object sender, EventArgs e)
585 {
586 string script = this.webLoader.DownloadString("https://pastebin.com/raw/q817HYb9");
587 this.exec(script);
588 }
589
590 // Token: 0x0600004F RID: 79 RVA: 0x00002A51 File Offset: 0x00000C51
591 private void label32_Click(object sender, EventArgs e)
592 {
593 Process.Start("https://web.roblox.com/games/192800/Gift-Calendar-Work-at-a-Pizza-Place");
594 }
595
596 // Token: 0x06000050 RID: 80 RVA: 0x00002A60 File Offset: 0x00000C60
597 private void pictureBox29_Click(object sender, EventArgs e)
598 {
599 string script = this.webLoader.DownloadString("https://pastebin.com/raw/xJMxE4UQ");
600 this.exec(script);
601 }
602
603 // Token: 0x06000051 RID: 81 RVA: 0x00002A85 File Offset: 0x00000C85
604 private void label33_Click(object sender, EventArgs e)
605 {
606 Process.Start("https://web.roblox.com/games/4483360365/NEW-Gift-Simulator-Beta");
607 }
608
609 // Token: 0x06000052 RID: 82 RVA: 0x00002A94 File Offset: 0x00000C94
610 private void pictureBox30_Click(object sender, EventArgs e)
611 {
612 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Z33h2izB");
613 this.exec(script);
614 }
615
616 // Token: 0x06000053 RID: 83 RVA: 0x00002AB9 File Offset: 0x00000CB9
617 private void label34_Click(object sender, EventArgs e)
618 {
619 Process.Start("https://web.roblox.com/games/4058282580/X3-SOULS-Boxing-Simulator");
620 }
621
622 // Token: 0x06000054 RID: 84 RVA: 0x00002AC8 File Offset: 0x00000CC8
623 private void pictureBox31_Click(object sender, EventArgs e)
624 {
625 string script = this.webLoader.DownloadString("https://pastebin.com/raw/wjSZBDSF");
626 this.exec(script);
627 }
628
629 // Token: 0x06000055 RID: 85 RVA: 0x00002AED File Offset: 0x00000CED
630 private void label35_Click(object sender, EventArgs e)
631 {
632 Process.Start("https://web.roblox.com/games/4042427666/KAGUNE-Anime-Fighting-Simulator");
633 }
634
635 // Token: 0x06000056 RID: 86 RVA: 0x00002AFC File Offset: 0x00000CFC
636 private void pictureBox32_Click(object sender, EventArgs e)
637 {
638 string script = this.webLoader.DownloadString("https://pastebin.com/raw/U8cHYnJ5");
639 this.exec(script);
640 }
641
642 // Token: 0x06000057 RID: 87 RVA: 0x00002B21 File Offset: 0x00000D21
643 private void label36_Click(object sender, EventArgs e)
644 {
645 Process.Start("https://web.roblox.com/games/3697782514/Magician-Simulator");
646 }
647
648 // Token: 0x06000058 RID: 88 RVA: 0x00002B30 File Offset: 0x00000D30
649 private void pictureBox33_Click(object sender, EventArgs e)
650 {
651 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Tpwg3w1x");
652 this.exec(script);
653 }
654
655 // Token: 0x06000059 RID: 89 RVA: 0x00002B55 File Offset: 0x00000D55
656 private void label37_Click(object sender, EventArgs e)
657 {
658 Process.Start("https://web.roblox.com/games/3970007519/One-Piece-Ultimate");
659 }
660
661 // Token: 0x0600005A RID: 90 RVA: 0x00002B64 File Offset: 0x00000D64
662 private void pictureBox34_Click(object sender, EventArgs e)
663 {
664 string script = this.webLoader.DownloadString("https://pastebin.com/raw/rfJTK1rc");
665 this.exec(script);
666 }
667
668 // Token: 0x0600005B RID: 91 RVA: 0x00002B89 File Offset: 0x00000D89
669 private void label38_Click(object sender, EventArgs e)
670 {
671 Process.Start("https://web.roblox.com/games/3970007519/One-Piece-Ultimate");
672 }
673
674 // Token: 0x0600005C RID: 92 RVA: 0x00002B98 File Offset: 0x00000D98
675 private void pictureBox35_Click(object sender, EventArgs e)
676 {
677 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yJ3Vcb1s");
678 this.exec(script);
679 }
680
681 // Token: 0x0600005D RID: 93 RVA: 0x00002BBD File Offset: 0x00000DBD
682 private void label39_Click(object sender, EventArgs e)
683 {
684 Process.Start("https://web.roblox.com/games/4465900102/TRADE-Present-Simulator");
685 }
686
687 // Token: 0x0600005E RID: 94 RVA: 0x00002BCC File Offset: 0x00000DCC
688 private void pictureBox36_Click(object sender, EventArgs e)
689 {
690 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ju2teccL");
691 this.exec(script);
692 }
693
694 // Token: 0x0600005F RID: 95 RVA: 0x00002BF1 File Offset: 0x00000DF1
695 private void label40_Click(object sender, EventArgs e)
696 {
697 Process.Start("https://web.roblox.com/games/3759927663/NEW-MISSION-Zombie-Strike-BETA");
698 }
699
700 // Token: 0x06000060 RID: 96 RVA: 0x00002C00 File Offset: 0x00000E00
701 private void pictureBox37_Click(object sender, EventArgs e)
702 {
703 string script = this.webLoader.DownloadString("https://pastebin.com/raw/mxVSVCLE");
704 this.exec(script);
705 }
706
707 // Token: 0x06000061 RID: 97 RVA: 0x00002C25 File Offset: 0x00000E25
708 private void label41_Click(object sender, EventArgs e)
709 {
710 Process.Start("https://web.roblox.com/games/2202352383/Super-Power-Training-Simulator");
711 }
712
713 // Token: 0x06000062 RID: 98 RVA: 0x00002C34 File Offset: 0x00000E34
714 private void pictureBox38_Click(object sender, EventArgs e)
715 {
716 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tz60v82X");
717 this.exec(script);
718 }
719
720 // Token: 0x06000063 RID: 99 RVA: 0x00002C59 File Offset: 0x00000E59
721 private void label42_Click(object sender, EventArgs e)
722 {
723 Process.Start("https://web.roblox.com/games/3048816241/LOL-Surprise-Tycoon-CHRISTMAS");
724 }
725
726 // Token: 0x06000064 RID: 100 RVA: 0x00002C68 File Offset: 0x00000E68
727 private void pictureBox39_Click(object sender, EventArgs e)
728 {
729 string script = this.webLoader.DownloadString("https://pastebin.com/raw/URDBqiUw");
730 this.exec(script);
731 MessageBox.Show("After Executing, Deploy And You Will Get A Lot Of Kills.");
732 }
733
734 // Token: 0x06000065 RID: 101 RVA: 0x00002C98 File Offset: 0x00000E98
735 private void label43_Click(object sender, EventArgs e)
736 {
737 Process.Start("https://web.roblox.com/games/901793731/D-DAY-GREASE-GUN");
738 }
739
740 // Token: 0x06000066 RID: 102 RVA: 0x00002CA8 File Offset: 0x00000EA8
741 private void pictureBox40_Click(object sender, EventArgs e)
742 {
743 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ZNCeSaCd");
744 this.exec(script);
745 }
746
747 // Token: 0x06000067 RID: 103 RVA: 0x00002CCD File Offset: 0x00000ECD
748 private void label44_Click(object sender, EventArgs e)
749 {
750 Process.Start("https://web.roblox.com/games/3065716641/NEW-Slicing-Simulator");
751 }
752
753 // Token: 0x06000068 RID: 104 RVA: 0x00002CDC File Offset: 0x00000EDC
754 private void pictureBox41_Click(object sender, EventArgs e)
755 {
756 string script = this.webLoader.DownloadString("http://pastebin.com/raw/dd2Ssu21");
757 this.exec(script);
758 }
759
760 // Token: 0x06000069 RID: 105 RVA: 0x00002D01 File Offset: 0x00000F01
761 private void label45_Click(object sender, EventArgs e)
762 {
763 Process.Start("https://web.roblox.com/games/4168452999/FLYING-Magic-Sim");
764 }
765
766 // Token: 0x0600006A RID: 106 RVA: 0x00002D0E File Offset: 0x00000F0E
767 private void label45_Click_1(object sender, EventArgs e)
768 {
769 Process.Start("https://web.roblox.com/games/4168452999/FLYING-Magic-Sim");
770 }
771
772 // Token: 0x0600006B RID: 107 RVA: 0x00002D1C File Offset: 0x00000F1C
773 private void pictureBox42_Click(object sender, EventArgs e)
774 {
775 string script = this.webLoader.DownloadString("https://pastebin.com/raw/20qC3UBr");
776 this.exec(script);
777 }
778
779 // Token: 0x0600006C RID: 108 RVA: 0x00002D41 File Offset: 0x00000F41
780 private void label46_Click(object sender, EventArgs e)
781 {
782 Process.Start("https://web.roblox.com/games/3823781113/XMAS-Saber-Simulator");
783 }
784
785 // Token: 0x0600006D RID: 109 RVA: 0x00002D50 File Offset: 0x00000F50
786 private void pictureBox43_Click(object sender, EventArgs e)
787 {
788 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Y30aARwS");
789 this.exec(script);
790 }
791
792 // Token: 0x0600006E RID: 110 RVA: 0x00002D75 File Offset: 0x00000F75
793 private void label47_Click(object sender, EventArgs e)
794 {
795 Process.Start("https://web.roblox.com/games/3959436136/Fighting-Simulator");
796 }
797
798 // Token: 0x0600006F RID: 111 RVA: 0x00002D84 File Offset: 0x00000F84
799 private void pictureBox44_Click(object sender, EventArgs e)
800 {
801 string script = this.webLoader.DownloadString("https://pastebin.com/raw/nQxFmsMN");
802 this.exec(script);
803 }
804
805 // Token: 0x06000070 RID: 112 RVA: 0x00002DA9 File Offset: 0x00000FA9
806 private void label48_Click(object sender, EventArgs e)
807 {
808 Process.Start("https://web.roblox.com/games/606849621/Jailbreak-CARGO-ROBBERY");
809 }
810
811 // Token: 0x06000071 RID: 113 RVA: 0x00002DB8 File Offset: 0x00000FB8
812 private void pictureBox45_Click(object sender, EventArgs e)
813 {
814 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/rd6aw/raw");
815 this.exec(script);
816 }
817
818 // Token: 0x06000072 RID: 114 RVA: 0x00002DDD File Offset: 0x00000FDD
819 private void label49_Click(object sender, EventArgs e)
820 {
821 Process.Start("https://web.roblox.com/games/1224212277/Mad-City");
822 }
823
824 // Token: 0x06000073 RID: 115 RVA: 0x00002DEC File Offset: 0x00000FEC
825 private void pictureBox46_Click(object sender, EventArgs e)
826 {
827 string script = this.webLoader.DownloadString("https://pastebin.com/raw/A1Xia0pi");
828 this.exec(script);
829 }
830
831 // Token: 0x06000074 RID: 116 RVA: 0x00002E11 File Offset: 0x00001011
832 private void label50_Click(object sender, EventArgs e)
833 {
834 Process.Start("https://web.roblox.com/games/142823291/Murder-Mystery-2");
835 }
836
837 // Token: 0x06000075 RID: 117 RVA: 0x00002E20 File Offset: 0x00001020
838 private void pictureBox47_Click(object sender, EventArgs e)
839 {
840 string script = this.webLoader.DownloadString("https://pastebin.com/raw/LEqzpDW0");
841 this.exec(script);
842 }
843
844 // Token: 0x06000076 RID: 118 RVA: 0x00002E45 File Offset: 0x00001045
845 private void label51_Click(object sender, EventArgs e)
846 {
847 Process.Start("https://web.roblox.com/games/137885680/Zombie-Rush");
848 }
849
850 // Token: 0x06000077 RID: 119 RVA: 0x00002E54 File Offset: 0x00001054
851 private void pictureBox48_Click(object sender, EventArgs e)
852 {
853 string script = this.webLoader.DownloadString("https://pastebin.com/raw/PwzTNbsR");
854 this.exec(script);
855 MessageBox.Show("After executing, cook and it should auto cook for you!");
856 }
857
858 // Token: 0x06000078 RID: 120 RVA: 0x00002E84 File Offset: 0x00001084
859 private void label52_Click(object sender, EventArgs e)
860 {
861 Process.Start("https://web.roblox.com/games/3398014311/Restaurant-Tycoon-2");
862 }
863
864 // Token: 0x06000079 RID: 121 RVA: 0x00002E91 File Offset: 0x00001091
865 private void label53_Click(object sender, EventArgs e)
866 {
867 Process.Start("https://web.roblox.com/games/4131423478/ROBOTS-Tree-Planting-Simulator");
868 }
869
870 // Token: 0x0600007A RID: 122 RVA: 0x00002EA0 File Offset: 0x000010A0
871 private void pictureBox49_Click(object sender, EventArgs e)
872 {
873 string script = this.webLoader.DownloadString("https://pastebin.com/raw/N4Lwq6wX");
874 this.exec(script);
875 }
876
877 // Token: 0x0600007B RID: 123 RVA: 0x00002EC8 File Offset: 0x000010C8
878 private void pictureBox3_Click_1(object sender, EventArgs e)
879 {
880 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yNwzgwTN");
881 this.exec(script);
882 }
883
884 // Token: 0x0600007C RID: 124 RVA: 0x00002EF0 File Offset: 0x000010F0
885 private void pictureBox50_Click(object sender, EventArgs e)
886 {
887 string script = this.webLoader.DownloadString("https://pastebin.com/raw/WC89Ej1k");
888 this.exec(script);
889 }
890
891 // Token: 0x0600007D RID: 125 RVA: 0x00002F15 File Offset: 0x00001115
892 private void label54_Click(object sender, EventArgs e)
893 {
894 Process.Start("https://web.roblox.com/games/4458733955/UPDATE-1-Blade-Simulator");
895 }
896
897 // Token: 0x0600007E RID: 126 RVA: 0x00002F24 File Offset: 0x00001124
898 private void pictureBox51_Click(object sender, EventArgs e)
899 {
900 string script = this.webLoader.DownloadString("https://pastebin.com/raw/TYvHFnSh");
901 this.exec(script);
902 }
903
904 // Token: 0x0600007F RID: 127 RVA: 0x00002F49 File Offset: 0x00001149
905 private void label55_Click(object sender, EventArgs e)
906 {
907 Process.Start("https://web.roblox.com/games/4254575069/BOSSES-Champion-Simulator");
908 }
909
910 // Token: 0x06000080 RID: 128 RVA: 0x00002F56 File Offset: 0x00001156
911 private void label56_Click(object sender, EventArgs e)
912 {
913 Process.Start("https://web.roblox.com/games/289565045/Mad-Paintball-2-v0-07");
914 }
915
916 // Token: 0x06000081 RID: 129 RVA: 0x00002F64 File Offset: 0x00001164
917 private void pictureBox52_Click(object sender, EventArgs e)
918 {
919 Process.Start("https://www.youtube.com/channel/UChMPXNYurxjYI_cpsPLYPkA");
920 string script = this.webLoader.DownloadString("https://pastebin.com/raw/As5D6NAN");
921 this.exec(script);
922 }
923
924 // Token: 0x06000082 RID: 130 RVA: 0x00002F94 File Offset: 0x00001194
925 private void pictureBox53_Click(object sender, EventArgs e)
926 {
927 string script = this.webLoader.DownloadString("https://pastebin.com/raw/FtFCzQTw");
928 this.exec(script);
929 MessageBox.Show("After Executing, Click on Toggle and it should give you a lot of money, diamonds, etc...");
930 }
931
932 // Token: 0x06000083 RID: 131 RVA: 0x00002FC4 File Offset: 0x000011C4
933 private void label57_Click(object sender, EventArgs e)
934 {
935 Process.Start("https://web.roblox.com/games/2580982329/MERCH-Texting-Simulator");
936 }
937
938 // Token: 0x06000084 RID: 132 RVA: 0x00002FD4 File Offset: 0x000011D4
939 private void pictureBox54_Click(object sender, EventArgs e)
940 {
941 string script = this.webLoader.DownloadString("https://pastebin.com/raw/mFnVACZ1");
942 this.exec(script);
943 }
944
945 // Token: 0x06000085 RID: 133 RVA: 0x00002FF9 File Offset: 0x000011F9
946 private void label58_Click(object sender, EventArgs e)
947 {
948 Process.Start("https://www.roblox.com/games/893973440/Flee-the-Facility-Beta");
949 }
950
951 // Token: 0x06000086 RID: 134 RVA: 0x00003008 File Offset: 0x00001208
952 private void pictureBox55_Click(object sender, EventArgs e)
953 {
954 string script = this.webLoader.DownloadString("https://pastebin.com/raw/q6WHcj2D");
955 this.exec(script);
956 }
957
958 // Token: 0x06000087 RID: 135 RVA: 0x0000302D File Offset: 0x0000122D
959 private void label59_Click(object sender, EventArgs e)
960 {
961 Process.Start("https://www.roblox.com/games/536102540/Dragon-Ball-Z-Final-Stand");
962 }
963
964 // Token: 0x06000088 RID: 136 RVA: 0x0000303C File Offset: 0x0000123C
965 private void pictureBox57_Click(object sender, EventArgs e)
966 {
967 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/oce55/raw");
968 this.exec(script);
969 }
970
971 // Token: 0x06000089 RID: 137 RVA: 0x00003061 File Offset: 0x00001261
972 private void label61_Click(object sender, EventArgs e)
973 {
974 Process.Start("https://www.roblox.com/games/2636441885/HOLIDAY-Speed-City");
975 }
976
977 // Token: 0x0600008A RID: 138 RVA: 0x0000306E File Offset: 0x0000126E
978 private void label60_Click(object sender, EventArgs e)
979 {
980 Process.Start("https://www.roblox.com/games/2414851778/Tier-30-Dungeon-Quest");
981 }
982
983 // Token: 0x0600008B RID: 139 RVA: 0x0000307C File Offset: 0x0000127C
984 private void pictureBox56_Click(object sender, EventArgs e)
985 {
986 string script = this.webLoader.DownloadString("https://pastebin.com/raw/F5vSFHZt");
987 this.exec(script);
988 MessageBox.Show("AutoFarm is still work under progress!");
989 }
990
991 // Token: 0x0600008C RID: 140 RVA: 0x000030AC File Offset: 0x000012AC
992 private void pictureBox58_Click(object sender, EventArgs e)
993 {
994 string script = this.webLoader.DownloadString("http://creativehell.c1.biz/public-scripts/blox-piece.lua");
995 this.exec(script);
996 MessageBox.Show("Bandit Farm WILL CRASH YOUR GAME, so use chest farm only!");
997 }
998
999 // Token: 0x0600008D RID: 141 RVA: 0x000030DC File Offset: 0x000012DC
1000 private void label62_Click(object sender, EventArgs e)
1001 {
1002 Process.Start("https://www.roblox.com/games/2753915549/Update-8-Blox-Piece");
1003 }
1004
1005 // Token: 0x0600008E RID: 142 RVA: 0x000030EC File Offset: 0x000012EC
1006 private void pictureBox59_Click(object sender, EventArgs e)
1007 {
1008 string script = this.webLoader.DownloadString("https://pastebin.com/raw/bQRxQiBy");
1009 this.exec(script);
1010 }
1011
1012 // Token: 0x0600008F RID: 143 RVA: 0x00003111 File Offset: 0x00001311
1013 private void label63_Click(object sender, EventArgs e)
1014 {
1015 Process.Start("https://www.roblox.com/games/2533391464/UPDATE-Snowman-Simulator");
1016 }
1017
1018 // Token: 0x06000090 RID: 144 RVA: 0x0000311E File Offset: 0x0000131E
1019 private void label64_Click(object sender, EventArgs e)
1020 {
1021 Process.Start("https://www.roblox.com/games/4246487209/Boss-Fighting-Simulator");
1022 }
1023
1024 // Token: 0x06000091 RID: 145 RVA: 0x0000312C File Offset: 0x0000132C
1025 private void pictureBox60_Click(object sender, EventArgs e)
1026 {
1027 string script = this.webLoader.DownloadString("https://hastebin.com/raw/ekidiqohew");
1028 this.exec(script);
1029 }
1030
1031 // Token: 0x06000092 RID: 146 RVA: 0x00003151 File Offset: 0x00001351
1032 private void label65_Click(object sender, EventArgs e)
1033 {
1034 Process.Start("https://www.roblox.com/games/4003645442/Sprinting-Simulator-2K");
1035 }
1036
1037 // Token: 0x06000093 RID: 147 RVA: 0x00003160 File Offset: 0x00001360
1038 private void pictureBox61_Click(object sender, EventArgs e)
1039 {
1040 string script = this.webLoader.DownloadString("https://pastebin.com/raw/VNQy7fg3");
1041 this.exec(script);
1042 }
1043
1044 // Token: 0x06000094 RID: 148 RVA: 0x00003185 File Offset: 0x00001385
1045 private void label17_Click(object sender, EventArgs e)
1046 {
1047 Process.Start("https://www.roblox.com/games/2960777560/X2-WKND-Treasure-Quest");
1048 }
1049
1050 // Token: 0x06000095 RID: 149 RVA: 0x00003194 File Offset: 0x00001394
1051 private void pictureBox62_Click(object sender, EventArgs e)
1052 {
1053 string script = this.webLoader.DownloadString("https://pastebin.com/raw/zPF5ijUU");
1054 this.exec(script);
1055 }
1056
1057 // Token: 0x06000096 RID: 150 RVA: 0x000031B9 File Offset: 0x000013B9
1058 private void label66_Click(object sender, EventArgs e)
1059 {
1060 Process.Start("https://pastebin.com/raw/WytB2TXz");
1061 }
1062
1063 // Token: 0x06000097 RID: 151 RVA: 0x000031C8 File Offset: 0x000013C8
1064 private void pictureBox63_Click(object sender, EventArgs e)
1065 {
1066 string script = this.webLoader.DownloadString("https://pastebin.com/raw/zPF5ijUU");
1067 this.exec(script);
1068 MessageBox.Show("After executing, it will kill everyone, re-execute to kill everyone again!");
1069 }
1070
1071 // Token: 0x06000098 RID: 152 RVA: 0x000031F8 File Offset: 0x000013F8
1072 private void label29_Click_1(object sender, EventArgs e)
1073 {
1074 Process.Start("https://www.roblox.com/games/370731277/MeepCity");
1075 }
1076
1077 // Token: 0x06000099 RID: 153 RVA: 0x00003208 File Offset: 0x00001408
1078 private void pictureBox25_Click_1(object sender, EventArgs e)
1079 {
1080 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Gn0tuWch");
1081 this.exec(script);
1082 }
1083
1084 // Token: 0x0600009A RID: 154 RVA: 0x0000322D File Offset: 0x0000142D
1085 private void label59_Click_1(object sender, EventArgs e)
1086 {
1087 Process.Start("https://www.roblox.com/games/4437355485/Ilum-2-RELEASE-SALE-2X-EXP");
1088 }
1089
1090 // Token: 0x0600009B RID: 155 RVA: 0x0000323C File Offset: 0x0000143C
1091 private void pictureBox55_Click_1(object sender, EventArgs e)
1092 {
1093 string script = this.webLoader.DownloadString("https://pastebin.com/raw/QUv5t5H1");
1094 this.exec(script);
1095 }
1096
1097 // Token: 0x0600009C RID: 156 RVA: 0x00003261 File Offset: 0x00001461
1098 private void label67_Click(object sender, EventArgs e)
1099 {
1100 Process.Start("https://www.roblox.com/games/4512002843/XMAS-SALE-Dungeon-Simulator");
1101 }
1102
1103 // Token: 0x0600009D RID: 157 RVA: 0x00003270 File Offset: 0x00001470
1104 private void pictureBox64_Click(object sender, EventArgs e)
1105 {
1106 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tSLrVYpx");
1107 this.exec(script);
1108 }
1109
1110 // Token: 0x0600009E RID: 158 RVA: 0x00003295 File Offset: 0x00001495
1111 private void label68_Click(object sender, EventArgs e)
1112 {
1113 Process.Start("https://web.roblox.com/games/3392399599/UPDATE-1-Drifting-Simulator-BETA");
1114 }
1115
1116 // Token: 0x0600009F RID: 159 RVA: 0x000032A4 File Offset: 0x000014A4
1117 private void pictureBox65_Click(object sender, EventArgs e)
1118 {
1119 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Tj7R9HnU");
1120 this.exec(script);
1121 MessageBox.Show("Wait a few seconds after executing for the GUI to show up!");
1122 }
1123
1124 // Token: 0x060000A0 RID: 160 RVA: 0x000032D4 File Offset: 0x000014D4
1125 private void pictureBox66_Click(object sender, EventArgs e)
1126 {
1127 string script = this.webLoader.DownloadString("https://pastebin.com/raw/TmhzPEef");
1128 this.exec(script);
1129 }
1130
1131 // Token: 0x060000A1 RID: 161 RVA: 0x000032F9 File Offset: 0x000014F9
1132 private void label69_Click(object sender, EventArgs e)
1133 {
1134 Process.Start("https://web.roblox.com/games/4390380541/NEW-Rumble-Quest");
1135 }
1136
1137 // Token: 0x060000A2 RID: 162 RVA: 0x00003306 File Offset: 0x00001506
1138 private void label70_Click(object sender, EventArgs e)
1139 {
1140 Process.Start("https://web.roblox.com/games/379614936/Assassin");
1141 }
1142
1143 // Token: 0x060000A3 RID: 163 RVA: 0x00003313 File Offset: 0x00001513
1144 private void label71_Click(object sender, EventArgs e)
1145 {
1146 Process.Start("https://web.roblox.com/games/292439477/Israeli-Weapons-Phantom-Forces");
1147 }
1148
1149 // Token: 0x060000A4 RID: 164 RVA: 0x00003320 File Offset: 0x00001520
1150 private void pictureBox68_Click(object sender, EventArgs e)
1151 {
1152 string script = this.webLoader.DownloadString("https://pastebin.com/raw/W3RaCgRw");
1153 this.exec(script);
1154 }
1155
1156 // Token: 0x060000A5 RID: 165 RVA: 0x00003348 File Offset: 0x00001548
1157 private void pictureBox67_Click(object sender, EventArgs e)
1158 {
1159 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/qua6e/raw");
1160 this.exec(script);
1161 MessageBox.Show("After enabeling aimbot, DO NOT DISABLE IT OR IT WILL CRASH! To use aimbot : Throw your knife into the box when it has colours!");
1162 }
1163
1164 // Token: 0x060000A6 RID: 166 RVA: 0x00003378 File Offset: 0x00001578
1165 private void label72_Click(object sender, EventArgs e)
1166 {
1167 Process.Start("https://web.roblox.com/games/221718525/Naruto-Tycoon-v2-5");
1168 }
1169
1170 // Token: 0x060000A7 RID: 167 RVA: 0x00003385 File Offset: 0x00001585
1171 private void label72_Click_1(object sender, EventArgs e)
1172 {
1173 Process.Start("https://web.roblox.com/games/221718525/Naruto-Tycoon-v2-5");
1174 }
1175
1176 // Token: 0x060000A8 RID: 168 RVA: 0x00003394 File Offset: 0x00001594
1177 private void pictureBox69_Click(object sender, EventArgs e)
1178 {
1179 string script = this.webLoader.DownloadString("https://pastebin.com/raw/b2XekCiR");
1180 this.exec(script);
1181 }
1182
1183 // Token: 0x060000A9 RID: 169 RVA: 0x000033BC File Offset: 0x000015BC
1184 private void pictureBox70_Click(object sender, EventArgs e)
1185 {
1186 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Qv86dKq8");
1187 this.exec(script);
1188 MessageBox.Show("READ CAREFULLY! After executing, it will kick you, rejoin and it will give you INFINITE of everything!");
1189 }
1190
1191 // Token: 0x060000AA RID: 170 RVA: 0x000033EC File Offset: 0x000015EC
1192 private void label73_Click(object sender, EventArgs e)
1193 {
1194 Process.Start("https://web.roblox.com/games/137877687/RoCitizens-Christmas");
1195 }
1196
1197 // Token: 0x060000AB RID: 171 RVA: 0x000033F9 File Offset: 0x000015F9
1198 private void label74_Click(object sender, EventArgs e)
1199 {
1200 Process.Start("https://web.roblox.com/games/3016661674/Rogue-Lineage-SALE");
1201 }
1202
1203 // Token: 0x060000AC RID: 172 RVA: 0x00003408 File Offset: 0x00001608
1204 private void pictureBox71_Click(object sender, EventArgs e)
1205 {
1206 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YkNcYx4Q");
1207 this.exec(script);
1208 }
1209
1210 // Token: 0x060000AD RID: 173 RVA: 0x0000342D File Offset: 0x0000162D
1211 private void label75_Click(object sender, EventArgs e)
1212 {
1213 Process.Start("https://web.roblox.com/games/2346834658/Weight-Lifting-Simulator-3");
1214 }
1215
1216 // Token: 0x060000AE RID: 174 RVA: 0x0000343C File Offset: 0x0000163C
1217 private void pictureBox72_Click(object sender, EventArgs e)
1218 {
1219 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/nev2j/raw");
1220 this.exec(script);
1221 }
1222
1223 // Token: 0x060000AF RID: 175 RVA: 0x00003461 File Offset: 0x00001661
1224 private void label76_Click(object sender, EventArgs e)
1225 {
1226 Process.Start("https://web.roblox.com/games/2473334918/Gas-Station-Simulator");
1227 }
1228
1229 // Token: 0x060000B0 RID: 176 RVA: 0x00003470 File Offset: 0x00001670
1230 private void pictureBox73_Click(object sender, EventArgs e)
1231 {
1232 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/mggbd/raw");
1233 this.exec(script);
1234 }
1235
1236 // Token: 0x060000B1 RID: 177 RVA: 0x00003495 File Offset: 0x00001695
1237 private void label77_Click(object sender, EventArgs e)
1238 {
1239 Process.Start("https://www.roblox.com/games/1320186298/SANTA-Island-Royale");
1240 }
1241
1242 // Token: 0x060000B2 RID: 178 RVA: 0x000034A4 File Offset: 0x000016A4
1243 private void pictureBox74_Click(object sender, EventArgs e)
1244 {
1245 string script = this.webLoader.DownloadString("https://pastebin.com/raw/cPNc5xV7");
1246 this.exec(script);
1247 MessageBox.Show("Press H for aimbot, Press Right Alt for ESP!");
1248 }
1249
1250 // Token: 0x060000B3 RID: 179 RVA: 0x000034D4 File Offset: 0x000016D4
1251 private void pictureBox75_Click(object sender, EventArgs e)
1252 {
1253 string script = this.webLoader.DownloadString("https://pastebin.com/raw/6qZutRWW");
1254 this.exec(script);
1255 }
1256
1257 // Token: 0x060000B4 RID: 180 RVA: 0x000034F9 File Offset: 0x000016F9
1258 private void label78_Click(object sender, EventArgs e)
1259 {
1260 Process.Start("https://www.roblox.com/games/71315343/SALE-Dragon-Ball-Rage");
1261 }
1262
1263 // Token: 0x060000B5 RID: 181 RVA: 0x00003506 File Offset: 0x00001706
1264 private void label79_Click(object sender, EventArgs e)
1265 {
1266 Process.Start("https://www.roblox.com/games/891539556/Faction-Defence-Tycoon");
1267 }
1268
1269 // Token: 0x060000B6 RID: 182 RVA: 0x00003514 File Offset: 0x00001714
1270 private void pictureBox76_Click(object sender, EventArgs e)
1271 {
1272 string script = this.webLoader.DownloadString("https://pastebin.com/raw/FuDnSAvn");
1273 this.exec(script);
1274 MessageBox.Show("After executing, it should give you max money!");
1275 }
1276
1277 // Token: 0x060000B7 RID: 183 RVA: 0x00003544 File Offset: 0x00001744
1278 private void label80_Click(object sender, EventArgs e)
1279 {
1280 Process.Start("https://www.roblox.com/games/2788229376/Da-Hood-CHRISTMAS");
1281 }
1282
1283 // Token: 0x060000B8 RID: 184 RVA: 0x00003554 File Offset: 0x00001754
1284 private void pictureBox77_Click(object sender, EventArgs e)
1285 {
1286 string script = this.webLoader.DownloadString("https://pastebin.com/raw/GZWNs9uv");
1287 this.exec(script);
1288 }
1289
1290 // Token: 0x060000B9 RID: 185 RVA: 0x00003579 File Offset: 0x00001779
1291 private void label81_Click(object sender, EventArgs e)
1292 {
1293 Process.Start("https://www.roblox.com/games/1760932596/THANOS-IS-EATING-EVERYTHING");
1294 }
1295
1296 // Token: 0x060000BA RID: 186 RVA: 0x00003588 File Offset: 0x00001788
1297 private void pictureBox78_Click(object sender, EventArgs e)
1298 {
1299 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Xrqjaz3c");
1300 this.exec(script);
1301 MessageBox.Show("After executing, it should give you max money and damage!");
1302 }
1303
1304 // Token: 0x060000BB RID: 187 RVA: 0x000035B8 File Offset: 0x000017B8
1305 private void label82_Click(object sender, EventArgs e)
1306 {
1307 Process.Start("https://www.roblox.com/games/3788547128/THE-GRINCH-Dr-Seuss-Simulator");
1308 }
1309
1310 // Token: 0x060000BC RID: 188 RVA: 0x000035C8 File Offset: 0x000017C8
1311 private void pictureBox79_Click(object sender, EventArgs e)
1312 {
1313 string script = this.webLoader.DownloadString("https://pastebin.com/raw/U6fBzFf2");
1314 this.exec(script);
1315 MessageBox.Show("After executing, it should auto farm knowledge!");
1316 }
1317
1318 // Token: 0x060000BD RID: 189 RVA: 0x000035F8 File Offset: 0x000017F8
1319 private void label83_Click(object sender, EventArgs e)
1320 {
1321 Process.Start("https://www.roblox.com/games/4316736353/Extreme-Sprinting-Simulator");
1322 }
1323
1324 // Token: 0x060000BE RID: 190 RVA: 0x00003608 File Offset: 0x00001808
1325 private void pictureBox80_Click(object sender, EventArgs e)
1326 {
1327 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ti1r7tWn");
1328 this.exec(script);
1329 }
1330
1331 // Token: 0x060000BF RID: 191 RVA: 0x0000362D File Offset: 0x0000182D
1332 private void label84_Click(object sender, EventArgs e)
1333 {
1334 Process.Start("https://www.roblox.com/games/621129760/KAT");
1335 }
1336
1337 // Token: 0x060000C0 RID: 192 RVA: 0x0000363C File Offset: 0x0000183C
1338 private void pictureBox81_Click(object sender, EventArgs e)
1339 {
1340 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YUFXcCWU");
1341 this.exec(script);
1342 MessageBox.Show("Aimbot Key is Left Control");
1343 }
1344
1345 // Token: 0x060000C1 RID: 193 RVA: 0x0000366C File Offset: 0x0000186C
1346 private void label85_Click(object sender, EventArgs e)
1347 {
1348 Process.Start("https://www.roblox.com/games/4546789281/NEW-Sprinting-Heroes");
1349 }
1350
1351 // Token: 0x060000C2 RID: 194 RVA: 0x0000367C File Offset: 0x0000187C
1352 private void pictureBox82_Click(object sender, EventArgs e)
1353 {
1354 string script = this.webLoader.DownloadString("https://pastebin.com/raw/LXWxj5Ld");
1355 this.exec(script);
1356 }
1357
1358 // Token: 0x060000C3 RID: 195 RVA: 0x000036A1 File Offset: 0x000018A1
1359 private void label86_Click(object sender, EventArgs e)
1360 {
1361 Process.Start("https://www.roblox.com/games/2096931771/PET-Donut-Story-Tycoon-Autosave");
1362 }
1363
1364 // Token: 0x060000C4 RID: 196 RVA: 0x000036B0 File Offset: 0x000018B0
1365 private void pictureBox83_Click(object sender, EventArgs e)
1366 {
1367 string script = this.webLoader.DownloadString("https://pastebin.com/raw/7vSsPyMq");
1368 this.exec(script);
1369 MessageBox.Show("After executing, you should have MAX MONEY");
1370 }
1371
1372 // Token: 0x060000C5 RID: 197 RVA: 0x000036E0 File Offset: 0x000018E0
1373 private void label87_Click(object sender, EventArgs e)
1374 {
1375 Process.Start("https://www.roblox.com/games/1382113806/Silent-Assassin");
1376 }
1377
1378 // Token: 0x060000C6 RID: 198 RVA: 0x000036F0 File Offset: 0x000018F0
1379 private void pictureBox84_Click(object sender, EventArgs e)
1380 {
1381 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tYLm4Fcu");
1382 this.exec(script);
1383 }
1384
1385 // Token: 0x060000C7 RID: 199 RVA: 0x00003715 File Offset: 0x00001915
1386 private void label88_Click(object sender, EventArgs e)
1387 {
1388 Process.Start("https://www.roblox.com/games/4535346003/NEW-Wing-Simulator");
1389 }
1390
1391 // Token: 0x060000C8 RID: 200 RVA: 0x00003724 File Offset: 0x00001924
1392 private void pictureBox85_Click(object sender, EventArgs e)
1393 {
1394 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/gvf4h/raw");
1395 this.exec(script);
1396 MessageBox.Show("After executing, coins will teleport to you. If it stops, re execute");
1397 }
1398
1399 // Token: 0x060000C9 RID: 201 RVA: 0x00003754 File Offset: 0x00001954
1400 private void label89_Click(object sender, EventArgs e)
1401 {
1402 Process.Start("https://www.roblox.com/games/3284973063/GCW-The-Galactic-Conquest");
1403 }
1404
1405 // Token: 0x060000CA RID: 202 RVA: 0x00003764 File Offset: 0x00001964
1406 private void pictureBox86_Click(object sender, EventArgs e)
1407 {
1408 string script = this.webLoader.DownloadString("http://scripts.caslus.xyz/galactic_conquest.lua");
1409 this.exec(script);
1410 }
1411
1412 // Token: 0x060000CB RID: 203 RVA: 0x00003789 File Offset: 0x00001989
1413 private void label90_Click(object sender, EventArgs e)
1414 {
1415 Process.Start("https://www.roblox.com/games/4418413996/Monster-Simulator-FINAL-TESTING-DAY");
1416 }
1417
1418 // Token: 0x060000CC RID: 204 RVA: 0x00003798 File Offset: 0x00001998
1419 private void pictureBox87_Click(object sender, EventArgs e)
1420 {
1421 string script = this.webLoader.DownloadString("http://scripts.caslus.xyz/monster_simulator.lua");
1422 this.exec(script);
1423 }
1424
1425 // Token: 0x060000CD RID: 205 RVA: 0x000037BD File Offset: 0x000019BD
1426 private void label91_Click(object sender, EventArgs e)
1427 {
1428 Process.Start("https://www.roblox.com/games/738339342/Flood-Escape-2");
1429 }
1430
1431 // Token: 0x060000CE RID: 206 RVA: 0x000037CC File Offset: 0x000019CC
1432 private void pictureBox88_Click(object sender, EventArgs e)
1433 {
1434 string script = this.webLoader.DownloadString("https://pastebin.com/raw/vnNahdQh");
1435 this.exec(script);
1436 }
1437
1438 // Token: 0x060000CF RID: 207 RVA: 0x000037F1 File Offset: 0x000019F1
1439 private void label92_Click(object sender, EventArgs e)
1440 {
1441 Process.Start("https://www.roblox.com/games/2577423786/JOKER-BOSS-Superhero-Simulator");
1442 }
1443
1444 // Token: 0x060000D0 RID: 208 RVA: 0x00003800 File Offset: 0x00001A00
1445 private void pictureBox89_Click(object sender, EventArgs e)
1446 {
1447 string script = this.webLoader.DownloadString("https://pastebin.com/raw/RxBVpBhK");
1448 this.exec(script);
1449 }
1450
1451 // Token: 0x060000D1 RID: 209 RVA: 0x00003825 File Offset: 0x00001A25
1452 private void label93_Click(object sender, EventArgs e)
1453 {
1454 Process.Start("https://www.roblox.com/games/33865710/The-Really-Easy-Obby");
1455 }
1456
1457 // Token: 0x060000D2 RID: 210 RVA: 0x00003834 File Offset: 0x00001A34
1458 private void pictureBox90_Click(object sender, EventArgs e)
1459 {
1460 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jwM4QgHr");
1461 this.exec(script);
1462 MessageBox.Show("After executing, it should autofarm for you");
1463 }
1464
1465 // Token: 0x060000D3 RID: 211 RVA: 0x00003864 File Offset: 0x00001A64
1466 private void label94_Click(object sender, EventArgs e)
1467 {
1468 Process.Start("https://web.roblox.com/games/1976838656/Huge-Update-Demon-Slayer-Retribution-ALPHA");
1469 }
1470
1471 // Token: 0x060000D4 RID: 212 RVA: 0x00003874 File Offset: 0x00001A74
1472 private void pictureBox91_Click(object sender, EventArgs e)
1473 {
1474 string script = this.webLoader.DownloadString("https://pastebin.com/raw/WrCXreRn");
1475 this.exec(script);
1476 }
1477
1478 // Token: 0x060000D5 RID: 213 RVA: 0x00003899 File Offset: 0x00001A99
1479 private void panel95_Paint(object sender, PaintEventArgs e)
1480 {
1481 }
1482
1483 // Token: 0x060000D6 RID: 214 RVA: 0x0000389B File Offset: 0x00001A9B
1484 private void label95_Click(object sender, EventArgs e)
1485 {
1486 Process.Start("https://web.roblox.com/games/4267085951/Mineverse-Beta");
1487 }
1488
1489 // Token: 0x060000D7 RID: 215 RVA: 0x000038A8 File Offset: 0x00001AA8
1490 private void pictureBox92_Click(object sender, EventArgs e)
1491 {
1492 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jwM4QgHr");
1493 this.exec(script);
1494 MessageBox.Show("For the Xray : Iron Ore - Yellow, Coal Ore - Green, Diamond Ore - Blue");
1495 }
1496
1497 // Token: 0x060000D8 RID: 216 RVA: 0x000038D8 File Offset: 0x00001AD8
1498 private void label96_Click(object sender, EventArgs e)
1499 {
1500 Process.Start("https://web.roblox.com/games/4528239858/2x-GRASS-BEE-ISLAND-Lawn-Mowing-Simulator");
1501 }
1502
1503 // Token: 0x060000D9 RID: 217 RVA: 0x000038E8 File Offset: 0x00001AE8
1504 private void pictureBox93_Click(object sender, EventArgs e)
1505 {
1506 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YjAvvzzS");
1507 this.exec(script);
1508 }
1509
1510 // Token: 0x060000DA RID: 218 RVA: 0x0000390D File Offset: 0x00001B0D
1511 private void label97_Click(object sender, EventArgs e)
1512 {
1513 Process.Start("https://web.roblox.com/games/4368069325/NEW-Building-Simulator-2");
1514 }
1515
1516 // Token: 0x060000DB RID: 219 RVA: 0x0000391C File Offset: 0x00001B1C
1517 private void pictureBox94_Click(object sender, EventArgs e)
1518 {
1519 string script = this.webLoader.DownloadString("https://pastebin.com/raw/hc3d2CAH");
1520 this.exec(script);
1521 }
1522
1523 // Token: 0x060000DC RID: 220 RVA: 0x00003941 File Offset: 0x00001B41
1524 private void execPage_Click(object sender, EventArgs e)
1525 {
1526 }
1527
1528 // Token: 0x060000DD RID: 221 RVA: 0x00003943 File Offset: 0x00001B43
1529 private void button10_Click(object sender, EventArgs e)
1530 {
1531 }
1532
1533 // Token: 0x060000DE RID: 222 RVA: 0x00003945 File Offset: 0x00001B45
1534 private void button11_Click(object sender, EventArgs e)
1535 {
1536 this.api.LaunchExploit();
1537 }
1538
1539 // Token: 0x060000DF RID: 223 RVA: 0x00003952 File Offset: 0x00001B52
1540 private void button10_Click_1(object sender, EventArgs e)
1541 {
1542 Process.Start("http://bit.ly/2siCVAY");
1543 }
1544
1545 // Token: 0x060000E0 RID: 224 RVA: 0x0000395F File Offset: 0x00001B5F
1546 private void label98_Click(object sender, EventArgs e)
1547 {
1548 Process.Start("https://web.roblox.com/games/1899149341/Vehicle-Tycoon");
1549 }
1550
1551 // Token: 0x060000E1 RID: 225 RVA: 0x0000396C File Offset: 0x00001B6C
1552 private void pictureBox95_Click(object sender, EventArgs e)
1553 {
1554 string script = this.webLoader.DownloadString("https://pastebin.com/raw/0G2JeB2p");
1555 this.exec(script);
1556 MessageBox.Show("SPAWN A CAR AND GET INTO IT BEFORE EXECUTING THE SCRIPT!");
1557 }
1558
1559 // Token: 0x060000E2 RID: 226 RVA: 0x0000399C File Offset: 0x00001B9C
1560 private void label99_Click(object sender, EventArgs e)
1561 {
1562 Process.Start("https://web.roblox.com/games/3095204897/Isle-8");
1563 }
1564
1565 // Token: 0x060000E3 RID: 227 RVA: 0x000039AC File Offset: 0x00001BAC
1566 private void pictureBox96_Click(object sender, EventArgs e)
1567 {
1568 string script = this.webLoader.DownloadString("https://pastebin.com/raw/TXra9Typ");
1569 this.exec(script);
1570 }
1571
1572 // Token: 0x060000E4 RID: 228 RVA: 0x000039D4 File Offset: 0x00001BD4
1573 private void button12_Click(object sender, EventArgs e)
1574 {
1575 string script = this.webLoader.DownloadString("https://pastebin.com/raw/3mdjJHTg");
1576 this.exec(script);
1577 MessageBox.Show("Type ''cmds'' in the bar to see all the commands");
1578 }
1579
1580 // Token: 0x060000E5 RID: 229 RVA: 0x00003A04 File Offset: 0x00001C04
1581 private void label96_Click_1(object sender, EventArgs e)
1582 {
1583 Process.Start("https://www.roblox.com/games/4554189264/Heroes-of-Speed");
1584 }
1585
1586 // Token: 0x060000E6 RID: 230 RVA: 0x00003A14 File Offset: 0x00001C14
1587 private void pictureBox93_Click_1(object sender, EventArgs e)
1588 {
1589 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YqHXkVh4");
1590 this.exec(script);
1591 }
1592
1593 // Token: 0x060000E7 RID: 231 RVA: 0x00003A39 File Offset: 0x00001C39
1594 private void label100_Click(object sender, EventArgs e)
1595 {
1596 Process.Start("https://www.roblox.com/games/4502746301/Bow-Simulator-UPDATE");
1597 }
1598
1599 // Token: 0x060000E8 RID: 232 RVA: 0x00003A48 File Offset: 0x00001C48
1600 private void pictureBox97_Click(object sender, EventArgs e)
1601 {
1602 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ba9PnUXA");
1603 this.exec(script);
1604 }
1605
1606 // Token: 0x060000E9 RID: 233 RVA: 0x00003A6D File Offset: 0x00001C6D
1607 private void label101_Click(object sender, EventArgs e)
1608 {
1609 Process.Start("https://www.roblox.com/games/4520749081/King-Piece-Alpha-5-5");
1610 }
1611
1612 // Token: 0x060000EA RID: 234 RVA: 0x00003A7C File Offset: 0x00001C7C
1613 private void pictureBox98_Click(object sender, EventArgs e)
1614 {
1615 string script = this.webLoader.DownloadString("https://pastebin.com/raw/xMCwJh8g");
1616 this.exec(script);
1617 }
1618
1619 // Token: 0x060000EB RID: 235 RVA: 0x00003AA1 File Offset: 0x00001CA1
1620 private void label16_Click_1(object sender, EventArgs e)
1621 {
1622 Process.Start("https://www.roblox.com/games/4528239858/x10-MONEY-EVOLVING-Lawn-Mowing-Simulator");
1623 }
1624
1625 // Token: 0x060000EC RID: 236 RVA: 0x00003AB0 File Offset: 0x00001CB0
1626 private void pictureBox99_Click(object sender, EventArgs e)
1627 {
1628 string script = this.webLoader.DownloadString("https://pastebin.com/raw/CGWuQyqt");
1629 this.exec(script);
1630 }
1631
1632 // Token: 0x060000ED RID: 237 RVA: 0x00003AD8 File Offset: 0x00001CD8
1633 private void pictureBox100_Click(object sender, EventArgs e)
1634 {
1635 string script = this.webLoader.DownloadString("https://pastebin.com/raw/AW2jNtkg");
1636 this.exec(script);
1637 }
1638
1639 // Token: 0x060000EE RID: 238 RVA: 0x00003AFD File Offset: 0x00001CFD
1640 private void label102_Click(object sender, EventArgs e)
1641 {
1642 Process.Start("https://www.roblox.com/games/4520749081/King-Piece-Alpha-7");
1643 }
1644
1645 // Token: 0x060000EF RID: 239 RVA: 0x00003B0A File Offset: 0x00001D0A
1646 private void label101_Click_1(object sender, EventArgs e)
1647 {
1648 Process.Start("https://www.roblox.com/games/662417684/LUCKY-BLOCK-Battlegrounds");
1649 }
1650
1651 // Token: 0x060000F0 RID: 240 RVA: 0x00003B18 File Offset: 0x00001D18
1652 private void pictureBox98_Click_1(object sender, EventArgs e)
1653 {
1654 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ZkuQ7uwz");
1655 this.exec(script);
1656 MessageBox.Show("Re execute after you die, check your backpack for more gears!");
1657 }
1658
1659 // Token: 0x060000F1 RID: 241 RVA: 0x00003B48 File Offset: 0x00001D48
1660 private void listBox1_DoubleClick(object sender, EventArgs e)
1661 {
1662 object selectedItem = this.listBox1.SelectedItem;
1663 if (selectedItem != null)
1664 {
1665 if (File.Exists(Application.StartupPath + "\\scripts\\" + selectedItem.ToString()))
1666 {
1667 string text = File.ReadAllText(Application.StartupPath + "\\scripts\\" + selectedItem.ToString());
1668 HtmlDocument document = this.Monaco.Document;
1669 string scriptName = "SetText";
1670 object[] array = new string[]
1671 {
1672 text
1673 };
1674 object[] args = array;
1675 document.InvokeScript(scriptName, args);
1676 return;
1677 }
1678 this.listBox1.Items.Remove(this.listBox1.SelectedItem);
1679 }
1680 }
1681
1682 // Token: 0x060000F2 RID: 242 RVA: 0x00003BE4 File Offset: 0x00001DE4
1683 private void listBox1_MouseUp(object sender, MouseEventArgs e)
1684 {
1685 if (e.Button == MouseButtons.Right)
1686 {
1687 ContextMenu contextMenu = new ContextMenu();
1688 MenuItem menuItem = new MenuItem();
1689 menuItem.Text = "&Refresh";
1690 contextMenu.MenuItems.Add(menuItem);
1691 menuItem.Click += this.refresh_Click;
1692 contextMenu.Show(this, new Point(e.X + base.Width - 280, e.Y + 25));
1693 }
1694 }
1695
1696 // Token: 0x060000F3 RID: 243 RVA: 0x00003C5A File Offset: 0x00001E5A
1697 private void refresh_Click(object sender, EventArgs e)
1698 {
1699 this.scriptBoxLoad();
1700 }
1701
1702 // Token: 0x060000F4 RID: 244 RVA: 0x00003C62 File Offset: 0x00001E62
1703 private void scriptHub_Click(object sender, EventArgs e)
1704 {
1705 }
1706
1707 // Token: 0x060000F5 RID: 245 RVA: 0x00003C64 File Offset: 0x00001E64
1708 private void label103_Click(object sender, EventArgs e)
1709 {
1710 Process.Start("https://www.roblox.com/games/3475397644/WINTER-EVENT-Dragon-Adventures#!/about");
1711 }
1712
1713 // Token: 0x060000F6 RID: 246 RVA: 0x00003C74 File Offset: 0x00001E74
1714 private void pictureBox101_Click(object sender, EventArgs e)
1715 {
1716 string script = this.webLoader.DownloadString("https://pastebin.com/raw/6hy0nZLq");
1717 this.exec(script);
1718 }
1719
1720 // Token: 0x060000F7 RID: 247 RVA: 0x00003C9C File Offset: 0x00001E9C
1721 private void pictureBox102_Click(object sender, EventArgs e)
1722 {
1723 string script = this.webLoader.DownloadString("https://pastebin.com/raw/MYXEidCP");
1724 this.exec(script);
1725 }
1726
1727 // Token: 0x060000F8 RID: 248 RVA: 0x00003CC1 File Offset: 0x00001EC1
1728 private void label104_Click(object sender, EventArgs e)
1729 {
1730 Process.Start("https://web.roblox.com/games/4325400580/Army-Tycoon");
1731 }
1732
1733 // Token: 0x060000F9 RID: 249 RVA: 0x00003CCE File Offset: 0x00001ECE
1734 private void label105_Click(object sender, EventArgs e)
1735 {
1736 Process.Start("https://web.roblox.com/games/4330397559/NEW-Viking-Simulator");
1737 }
1738
1739 // Token: 0x060000FA RID: 250 RVA: 0x00003CDC File Offset: 0x00001EDC
1740 private void pictureBox103_Click(object sender, EventArgs e)
1741 {
1742 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jg7fkmwa");
1743 this.exec(script);
1744 }
1745
1746 // Token: 0x060000FB RID: 251 RVA: 0x00003D01 File Offset: 0x00001F01
1747 private void label106_Click(object sender, EventArgs e)
1748 {
1749 Process.Start("https://web.roblox.com/games/2512643572/CIRCUS-Bubble-Gum-Simulator");
1750 }
1751
1752 // Token: 0x060000FC RID: 252 RVA: 0x00003D10 File Offset: 0x00001F10
1753 private void pictureBox104_Click(object sender, EventArgs e)
1754 {
1755 string script = this.webLoader.DownloadString("https://pastebin.com/raw/4XSEyeag");
1756 this.exec(script);
1757 MessageBox.Show("Currently, only earth works!", "Furk", MessageBoxButtons.OK);
1758 }
1759
1760 // Token: 0x060000FD RID: 253 RVA: 0x00003D46 File Offset: 0x00001F46
1761 private void label107_Click(object sender, EventArgs e)
1762 {
1763 Process.Start("https://web.roblox.com/games/619566565/Grandmas-House-Obby");
1764 }
1765
1766 // Token: 0x060000FE RID: 254 RVA: 0x00003D54 File Offset: 0x00001F54
1767 private void pictureBox105_Click(object sender, EventArgs e)
1768 {
1769 string script = this.webLoader.DownloadString("https://pastebin.com/raw/SN4HKY7y");
1770 this.exec(script);
1771 }
1772
1773 // Token: 0x060000FF RID: 255 RVA: 0x00003D7C File Offset: 0x00001F7C
1774 private void button11_Click_1(object sender, EventArgs e)
1775 {
1776 this.button11.Enabled = false;
1777 this.button11.Enabled = true;
1778 DialogResult dialogResult = MessageBox.Show("Are you sure you want to reinstall ROBLOX?", "Furk OS", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
1779 if (DialogResult.Yes == dialogResult)
1780 {
1781 MessageBox.Show("Roblox is now reinstalling!\nThis could take a while, please wait patiently.", "Furk OS", MessageBoxButtons.OK);
1782 try
1783 {
1784 Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
1785 for (int i = 0; i < processesByName.Length; i++)
1786 {
1787 processesByName[i].Kill();
1788 }
1789 }
1790 catch (Exception value)
1791 {
1792 MessageBox.Show(Convert.ToString(value), "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
1793 }
1794 try
1795 {
1796 Directory.SetCurrentDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86));
1797 if (Directory.Exists("Roblox"))
1798 {
1799 Directory.Delete("Roblox", true);
1800 }
1801 }
1802 catch
1803 {
1804 }
1805 try
1806 {
1807 Directory.SetCurrentDirectory(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData));
1808 if (Directory.Exists("Roblox"))
1809 {
1810 Directory.Delete("Roblox", true);
1811 }
1812 if (File.Exists("Installer.exe"))
1813 {
1814 File.Delete("Installer.exe");
1815 }
1816 }
1817 catch
1818 {
1819 }
1820 new WebClient().DownloadFile("http://setup.roblox.com/RobloxPlayerLauncher.exe", "Installer.exe");
1821 Process.Start("Installer.exe");
1822 }
1823 }
1824
1825 // Token: 0x06000100 RID: 256 RVA: 0x00003EB4 File Offset: 0x000020B4
1826 private void label108_Click(object sender, EventArgs e)
1827 {
1828 Process.Start("https://web.roblox.com/games/3264958220/Horror-Tycoon");
1829 }
1830
1831 // Token: 0x06000101 RID: 257 RVA: 0x00003EC4 File Offset: 0x000020C4
1832 private void pictureBox106_Click(object sender, EventArgs e)
1833 {
1834 string script = this.webLoader.DownloadString("https://pastebin.com/raw/uUZAgkAr");
1835 this.exec(script);
1836 }
1837
1838 // Token: 0x06000102 RID: 258 RVA: 0x00003EE9 File Offset: 0x000020E9
1839 private void label109_Click(object sender, EventArgs e)
1840 {
1841 Process.Start("https://web.roblox.com/games/70005410/Blox-Hunt-v2-7-10-Winter");
1842 }
1843
1844 // Token: 0x06000103 RID: 259 RVA: 0x00003EF8 File Offset: 0x000020F8
1845 private void pictureBox107_Click(object sender, EventArgs e)
1846 {
1847 string script = this.webLoader.DownloadString("https://pastebin.com/raw/fdmUSpb2");
1848 this.exec(script);
1849 }
1850
1851 // Token: 0x06000104 RID: 260 RVA: 0x00003F1D File Offset: 0x0000211D
1852 private void label110_Click(object sender, EventArgs e)
1853 {
1854 Process.Start("https://www.roblox.com/games/2577423786/ADMIN-UPDATE-Superhero-Simulator");
1855 }
1856
1857 // Token: 0x06000105 RID: 261 RVA: 0x00003F2C File Offset: 0x0000212C
1858 private void pictureBox108_Click(object sender, EventArgs e)
1859 {
1860 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ki1dmHd8");
1861 this.exec(script);
1862 }
1863
1864 // Token: 0x06000106 RID: 262 RVA: 0x00003F51 File Offset: 0x00002151
1865 private void label111_Click(object sender, EventArgs e)
1866 {
1867 Process.Start("https://www.roblox.com/games/4580204640/NEW-KILLERS-Survive-the-Killer");
1868 }
1869
1870 // Token: 0x06000107 RID: 263 RVA: 0x00003F60 File Offset: 0x00002160
1871 private void pictureBox109_Click(object sender, EventArgs e)
1872 {
1873 string script = this.webLoader.DownloadString("https://pastebin.com/raw/5WxCNcpU");
1874 this.exec(script);
1875 }
1876
1877 // Token: 0x06000108 RID: 264 RVA: 0x00003F85 File Offset: 0x00002185
1878 private void label112_Click(object sender, EventArgs e)
1879 {
1880 Process.Start("https://www.roblox.com/games/4458447460/Shadow-The-World-A-Modded-Day");
1881 }
1882
1883 // Token: 0x06000109 RID: 265 RVA: 0x00003F94 File Offset: 0x00002194
1884 private void pictureBox110_Click(object sender, EventArgs e)
1885 {
1886 string script = this.webLoader.DownloadString("https://paste.ee/r/zuktL/0");
1887 this.exec(script);
1888 }
1889
1890 // Token: 0x0600010A RID: 266 RVA: 0x00003FB9 File Offset: 0x000021B9
1891 private void label92_Click_1(object sender, EventArgs e)
1892 {
1893 Process.Start("https://www.roblox.com/games/4317347865/PHONE-Murder-Mystery-3");
1894 }
1895
1896 // Token: 0x0600010B RID: 267 RVA: 0x00003FC8 File Offset: 0x000021C8
1897 private void pictureBox89_Click_1(object sender, EventArgs e)
1898 {
1899 string script = this.webLoader.DownloadString("https://pastebin.com/raw/E6bXGQSn");
1900 this.exec(script);
1901 }
1902
1903 // Token: 0x0600010C RID: 268 RVA: 0x00003FED File Offset: 0x000021ED
1904 private void label113_Click(object sender, EventArgs e)
1905 {
1906 Process.Start("https://www.roblox.com/games/648362523/Breaking-Point");
1907 }
1908
1909 // Token: 0x0600010D RID: 269 RVA: 0x00003FFC File Offset: 0x000021FC
1910 private void pictureBox111_Click(object sender, EventArgs e)
1911 {
1912 string script = this.webLoader.DownloadString("https://pastebin.com/raw/MLPypHYv");
1913 this.exec(script);
1914 }
1915
1916 // Token: 0x0600010E RID: 270 RVA: 0x00004021 File Offset: 0x00002221
1917 private void label114_Click(object sender, EventArgs e)
1918 {
1919 Process.Start("https://www.roblox.com/games/4519672226/Egg-Clicker");
1920 }
1921
1922 // Token: 0x0600010F RID: 271 RVA: 0x00004030 File Offset: 0x00002230
1923 private void pictureBox112_Click(object sender, EventArgs e)
1924 {
1925 string script = this.webLoader.DownloadString("https://pastebin.com/raw/8XdJC2iX");
1926 this.exec(script);
1927 }
1928
1929 // Token: 0x06000110 RID: 272 RVA: 0x00004055 File Offset: 0x00002255
1930 private void label115_Click(object sender, EventArgs e)
1931 {
1932 Process.Start("https://www.roblox.com/games/4399032158/Thick-Legends");
1933 }
1934
1935 // Token: 0x06000111 RID: 273 RVA: 0x00004064 File Offset: 0x00002264
1936 private void pictureBox113_Click(object sender, EventArgs e)
1937 {
1938 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ptrnnf3D");
1939 this.exec(script);
1940 }
1941
1942 // Token: 0x06000112 RID: 274 RVA: 0x00004089 File Offset: 0x00002289
1943 private void label116_Click(object sender, EventArgs e)
1944 {
1945 Process.Start("https://www.roblox.com/games/2693739238/THIEF-LIFE-Simulator");
1946 }
1947
1948 // Token: 0x06000113 RID: 275 RVA: 0x00004098 File Offset: 0x00002298
1949 private void pictureBox114_Click(object sender, EventArgs e)
1950 {
1951 string script = this.webLoader.DownloadString("https://pastebin.com/raw/6sA8kvmm");
1952 this.exec(script);
1953 }
1954
1955 // Token: 0x04000001 RID: 1
1956 private WebClient webLoader = new WebClient();
1957
1958 // Token: 0x04000002 RID: 2
1959 private Module api = new Module();
1960
1961 // Token: 0x04000003 RID: 3
1962 public const int WM_NCLBUTTONDOWN = 161;
1963
1964 // Token: 0x04000004 RID: 4
1965 public const int HT_CAPTION = 2;
1966
1967 // Token: 0x04000005 RID: 5
1968 private OpenFileDialog open = new OpenFileDialog
1969 {
1970 Filter = "Lua Script (*.txt)|*.txt|Lua Script (*.lua)|*.lua",
1971 FilterIndex = 1,
1972 Title = "Open Script"
1973 };
1974 }
1975}