Advertisement
Guest User

executor part

a guest
Jun 6th, 2023
53
1
Never
7
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.02 KB | Gaming | 1 0
  1. . . .
  2. using WeAreDevs_API;  //Make sure the dll is referenced
  3.  
  4. namespace UI
  5. {
  6.     public partial class Form1 : Form
  7.     {
  8.          //So we can start calling methods from the API
  9.          ExploitAPI api = new ExploitAPI () ;
  10.  
  11.          public Form1()
  12.          {
  13.               InitializeComponent () ;
  14.          }
  15.          
  16.          private void button2_Click(object sender, EventArgs e)
  17.          {
  18.              //Attaches the API so we can use it!
  19.              api.LaunchExploit () ;
  20.          }                  
  21.          
  22.          private void btnLimitedLua_Click(object sender, EventArgs e)
  23.          {
  24.              //Gets the input (script) from the text box and executes that script
  25.              string script = richTextBox1.Text;
  26.              api.SendLimitedLuaScript (script);
  27.          }    
  28.          
  29.          private void button6_Click(object sender, EventArgs e)
  30.          {
  31.              //Pre-build command/script to make your character float
  32.              api.SendCommand("float me");
  33.          }  
  34.     }
  35. }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement