Categories > Exploiting > Roblox >

How to use is API attached?

Posts: 4

Threads: 1

Joined: Jun, 2019

Reputation: 0

Posted

I am making a exploit and i wanted to put a injection status like when i click inject and it works the status label will be change to injected

  • 0

Posts: 8

Threads: 1

Joined: Sep, 2018

Reputation: 0

Replied

Hi, I've been wondering the same thing. But I feel like it's not really usefull, it's only for the looks in my opinion. Because if you are unsure if your exploit is attached, you can just press 'Attach' or 'Inject' again and it will show you a popup that it is already attached.

  • 0

Posts: 4

Threads: 1

Joined: Jun, 2019

Reputation: 0

Replied

well i just this is the code

private void IsApiAttachedTimer_Tick(object sender, EventArgs e)

        {

            // Checks if the WeAreDevs API is attached

            if (!this.api.isAPIAttached())

            {

                this.StatusLabel.Text = "Not Injected";

                this.StatusLabel.ForeColor = Color.Crimson;

            }

            else

            {

                this.StatusLabel.Text = "Injected";

                this.StatusLabel.ForeColor = Color.SpringGreen;

            }

  • 0

Posts: 16

Threads: 1

Joined: Nov, 2019

Reputation: 0

Replied

//(idk the exact name's of the wrd functions so u need to put them ur self)

//Put this in a timer and set the timer Enabled to true and then on form load put timer1.Start();

bool yes = isAPIAttached;

if(yes == true)

 {

   labelname.Text = "Not Injected";

   labelname.ForeColor = Color.Red;

}

else

{

  labelname.Text = "Injected";

  labelname.ForeColor = Color.LimeGreen;

}

  • 0

Users viewing this thread:

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