Advertisement
Sombody101

FormattedScript

Jul 18th, 2022 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.19 KB | None | 0 0
  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4.  
  5. namespace AdamsExecutor
  6. {
  7.     public partial class Form1 : Form
  8.     {
  9.         // Entry \\
  10.         public Form1()
  11.             => InitializeComponent();
  12.  
  13.         // Variables \\
  14.         EasyExploits.Module module = new EasyExploits.Module();
  15.         Point lastPoint;
  16.         private string one = string.Empty;
  17.         Boolean onelmao = true;
  18.         Boolean two = false;
  19.         Boolean three = false;
  20.        
  21.         // Starter Functions \\
  22.         private void button3_Click(object sender, EventArgs e)
  23.         {
  24.             string textBox1 = richTextBox1.Text;
  25.             string textBox2 = richTextBox2.Text;
  26.             string textBox3 = richTextBox3.Text;
  27.            
  28.             if (onelmao == true)
  29.                 module.ExecuteScript(textBox1);
  30.             else if (two == true)
  31.                 module.ExecuteScript(textBox2);
  32.             else if (three == true)
  33.                 module.ExecuteScript(textBox3);
  34.         }
  35.        
  36.         private void panel1_MouseMove(object sender, MouseEventArgs e)
  37.         {
  38.             if (e.Button == MouseButtons.Left)
  39.             {
  40.                 this.Left += e.X - lastPoint.X;
  41.                 this.Top += e.Y - lastPoint.Y;
  42.             }
  43.         }
  44.  
  45.         private void button12_Click_1(object sender, EventArgs e)
  46.         {
  47.             richTextBox1.Visible = richTextBox3.Visible = false;
  48.             richTextBox2.Visible = true;
  49.            
  50.             onelmao = three = false;
  51.             two = true;
  52.         }
  53.  
  54.         private void button13_Click(object sender, EventArgs e)
  55.         {
  56.             richTextBox1.Visible = richTextBox2.Visible = false;
  57.             richTextBox3.Visible = true;
  58.  
  59.             onelmao = two = false;
  60.             three = true;
  61.         }
  62.         private void button4_Click_1(object sender, EventArgs e)
  63.         {            
  64.             richTextBox2.Visible = richTextBox3.Visible = false;
  65.             richTextBox1.Visible = true;
  66.  
  67.             onelmao = true;
  68.             two = three = false;
  69.         }
  70.  
  71.         private void button2_Click(object sender, EventArgs e)
  72.             => WindowState = FormWindowState.Minimized;
  73.         private void button1_Click(object sender, EventArgs e)
  74.             => Environment.Exit(0);
  75.         private void button5_Click(object sender, EventArgs e)
  76.             => module.LaunchExploit();
  77.         private void panel1_MouseDown(object sender, MouseEventArgs e)
  78.             => lastPoint = new Point(e.X, e.Y);
  79.  
  80.         // Loadstrings \\
  81.         private void button6_Click(object sender, EventArgs e)
  82.             => module.ExecuteScript("loadstring(game:HttpGet(\"https://pastebin.com/raw/CdjvXLpn\"))()");
  83.         private void button7_Click(object sender, EventArgs e)
  84.             => module.ExecuteScript("loadstring(game:HttpGet(\"https://pastebin.com/raw/0MLPL32f\", true))()");
  85.         private void button8_Click(object sender, EventArgs e)
  86.             => System.Diagnostics.Process.Start("https://github.com/ada-mmmm/Yeat-Executor");
  87.         private void button9_Click(object sender, EventArgs e)
  88.             => module.ExecuteScript("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/TheXploiterYT/scripts/main/ctrlclicktpfornooblol\", true))()");
  89.         private void button14_Click(object sender, EventArgs e)
  90.             => module.ExecuteScript("loadstring(game:HttpGet(\"https://pastebin.com/raw/ptMwyJA8\"))()");
  91.         private void button15_Click(object sender, EventArgs e)
  92.             => module.ExecuteScript("loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()");
  93.         private void button16_Click(object sender, EventArgs e)
  94.             => module.ExecuteScript("loadstring(game:HttpGet(\"https://gist.githubusercontent.com/redninjaawesome/539336c48e73107232933475d8e6120a/raw/f95fcd6db11128acd1a200e8866f806d3a102098/gistfile1.txt\"))()");
  95.        
  96.         // Unused \\
  97.         private void button10_Click(object sender, EventArgs e) { }
  98.         private void button11_Click(object sender, EventArgs e) { }
  99.         private void button12_Click(object sender, EventArgs e) { }
  100.         private void Form1_Load(object sender, EventArgs e) { }
  101.     }
  102. }
  103.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement