Categories > Exploiting > Roblox >
How to use is API attached?
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
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.
Cancel
Post
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;
}
Cancel
Post
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;
}
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post