Categories > Coding > Lua >

LaunchExploit(); Not working

Posts: 1

Threads: 1

Joined: Apr, 2023

Reputation: 0

Posted

Heres the code:

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.IO;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

using WeAreDevs_API;

 

namespace PALE_Scripts

{

    public partial class Form1 : Form

    {

 

        ExploitAPI module = new ExploitAPI();

        public Form1()

        {

            InitializeComponent();

        }

        Point lastPoint;

        private void Form1_Load(object sender, EventArgs e)

        {

 

        }

 

        private void label1_Click(object sender, EventArgs e)

        {

 

        }

 

        private void button9_Click(object sender, EventArgs e)

        {

            WindowState = FormWindowState.Minimized;

        }

 

        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)

        {

 

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            module.SendLuaScript(fastColoredTextBox1.Text);

        }

 

        private void button6_Click(object sender, EventArgs e)

        {

            module.LaunchExploit();

        }

 

        private void button2_Click(object sender, EventArgs e)

        {

            fastColoredTextBox1.Clear();

        }

 

        private void button3_Click(object sender, EventArgs e)

        {

            OpenFileDialog openFileDialog1 = new OpenFileDialog();

            if (openFileDialog1.ShowDialog() == DialogResult.OK)

            {

                openFileDialog1.Title = "Open";

                fastColoredTextBox1.Text = File.ReadAllText(openFileDialog1.FileName);

            }

        }

 

        private void button4_Click(object sender, EventArgs e)

        {

            SaveFileDialog saveFileDialog1 = new SaveFileDialog();

            if (saveFileDialog1.ShowDialog() == DialogResult.OK)

            {

                using (Stream s = File.Open(saveFileDialog1.FileName, FileMode.CreateNew))

                using (StreamWriter sw = new StreamWriter(s))

                {

                    sw.Write(fastColoredTextBox1.Text);

                }

            }

        }

 

        private void button7_Click(object sender, EventArgs e)

        {

            ScriptHub openform = new ScriptHub();

            openform.Show();

        }

 

        private void fastColoredTextBox1_Load(object sender, EventArgs e)

        {

 

        }

 

        private void fastColoredTextBox1_MouseDown(object sender, MouseEventArgs e)

        {

            

        }

 

        private void panel1_Paint(object sender, PaintEventArgs e)

        {

            

        }

 

        private void panel1_MouseDown(object sender, MouseEventArgs e)

        {

            lastPoint = new Point(e.X, e.Y);

        }

 

        private void panel1_MouseMove(object sender, MouseEventArgs e)

        {

            if (e.Button == MouseButtons.Left)

            {

                this.Left += e.X - lastPoint.X;

                this.Top += e.Y - lastPoint.Y;

            }

        }

 

        private void button10_Click(object sender, EventArgs e)

        {

            Application.Exit();

        }

    }

}


basically it keeps telling me something about the module.LaunchExploit(); not having a parameter name or it being null. I honestly dont understand what it is talking about.

  • 0

Posts: 21

Threads: 3

Joined: May, 2022

Reputation: 0

Replied

This thread isn't supposed to be in the Lua category, please change it to the C# category!

 

And WRDAPI doesn't work currently due to Byfron (Hyperion) released in the Roblox Windows Client.

 

So I am unable to help, sorry.

Comments

Pluto_Guy 30 Reputation

Commented

It would suite the wrd API section more

  • 0

Frostyyyxx 0 Reputation

Commented

@Pluto_Guy You're actually right

  • 0

  • 0

Discord username: rectifier#0593

Github username: legend16636

Advanced Scripter in Lua.

Posts: 662

Threads: 65

Joined: Oct, 2022

Reputation: 30

Replied

It does not work because the wearedevs API is outdated at the moment.

  • 0

Try the cheat launcher verve today ⬇

https://i.imgur.com/QdS8sQ5.png

Join Neuron Discord Server - https://discord.gg/harAKHv32K

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )