Profile Picture

buihongphuc

Reputation: 0 [rate]

Joined: Mar, 2023

Last online:

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Replied to thread : How to fix this c# error


Sorry for skidding :v here is the timer code again:

 

if (wrdcb.Checked == true)

{

             int RobloxPROCID = 0;

             var RobloxPROCS = Process.
             GetProcessesByName("RobloxPlayerBeta");

             if (RobloxPROCS.Length > 0)
                          {

                                       if (!wrd.isAPIAttached()

                                       && RobloxPROCID != RobloxPROCS[0].Id)

                          {

                                       Thread.Sleep(10000);


                                       wrd.LaunchExploit();

                                       RobloxPROCID = RobloxPROCS[0].Id;

                          }

             }

}

Replied to thread : How to fix this c# error


@tempegoreng, When i closed Roblox it goes injecting one more time then shutdown. Any ideas ?

Created a new thread : How to fix this c# error


I have a Timer and a checkbox for Auto Inject and this is my code :

 

 

Timer Code:

if (wrdcb.Checked == true)

            {

                foreach(Process proc in Process.GetProcessesByName("RobloxPlayerBeta"))

                {

                    if (!wrd.isAPIAttached())

                    {

                        Thread.Sleep(10000);

                        wrd.LaunchExploit();

                    }

                }

            }

            if (krnlcb.Checked == true)

            {

                foreach (Process proc in Process.GetProcessesByName("RobloxPlayerBeta"))

                {

                    if (!krnl.IsInjected())

                    {

                        Thread.Sleep(10000);

                        krnl.Inject();

                    }

                }

            }

 

Checkbox code:

 

if (guna2CustomCheckBox2.Checked == true)

            {

                this.timer1.Enabled = true;

                timer1.Start();

            }

            else

            {

                this.timer1.Stop();

                this.timer1.Enabled = false;

            }

 

 

 

Its work pretty good for WeAreDevsAPI tho

 

 

But if you dont have KRNL key and you are going to take it then the executor would spam krnl.Inject(); every Thread.Sleep(10000);

 

HOW DO I FIX IT PLS