Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- . . .
- using WeAreDevs_API; //Make sure the dll is referenced
- namespace UI
- {
- public partial class Form1 : Form
- {
- //So we can start calling methods from the API
- ExploitAPI api = new ExploitAPI () ;
- public Form1()
- {
- InitializeComponent () ;
- }
- private void button2_Click(object sender, EventArgs e)
- {
- //Attaches the API so we can use it!
- api.LaunchExploit () ;
- }
- private void btnLimitedLua_Click(object sender, EventArgs e)
- {
- //Gets the input (script) from the text box and executes that script
- string script = richTextBox1.Text;
- api.SendLimitedLuaScript (script);
- }
- private void button6_Click(object sender, EventArgs e)
- {
- //Pre-build command/script to make your character float
- api.SendCommand("float me");
- }
- }
- }
Advertisement
Comments
-
Comment was deleted
-
- Pls reply and copy this so that you do not need to download this link https://wearedevs.net/d/Exploit%20api
-
- Thanks 😊.
-
Comment was deleted
-
Comment was deleted
-
- Copy paste it in Notepad and save it by naming it WeAreDevs__API.dll
-
- This surely works
Add Comment
Please, Sign In to add comment
Advertisement