Categories > Exploiting > WRD Exploit API >

Kill Roblox script

Posts: 6

Threads: 2

Joined: Feb, 2023

Reputation: 0

Posted

Does anyone know how to make a Kill roblox script in Visual Studio? because im making a roblox Exploit using Wearedevs_Api. thank you

  • 0

DiDi

Bruh

Posts: 6

Threads: 3

Joined: Nov, 2022

Reputation: 2

Replied

Code:

Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
            for (int i = 0; i < processesByName.Length; i++)
            {
                Process process = processesByName[i];
                process.Kill();
            }
  • 0

DiDi creator

Posts: 6

Threads: 2

Joined: Feb, 2023

Reputation: 0

Replied

Thank you so much for helping me!

  • 0

Posts: 29

Threads: 4

Joined: Mar, 2023

Reputation: 1

Replied

@TheApis9, I am glad you received the help you needed, but please ensure you make threads in the correct channels. You should be posting this type of content in the C# Channel to receive help with C# code.

  • 0

Join our Discord Server at https://discord.gg/uAqUBNhWDa

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

Another example - this can also be made in a foreach loop.

foreach(Process proc in Process.GetProcesses()) {
    if(proc.ProcessName == "RobloxPlayerBeta") {
        proc.Kill();
    }
}
  • 0

Random quote here...

Posts: 533

Threads: 41

Joined: May, 2020

Reputation: 4

Replied

@VoidableMethod,

 

foreach (Process robloxProcess in Process.GetProcessesByName("RobloxPlayerBeta"))
                robloxProcess.Kill();

you dont need the if statment

  • 0

nltr | Xaml & C# Developer Former Fluxus Administrator
------------------------------------------------------------------------------------
💜 Developer of Kronos ðŸ’œ

Senior Dev of Orbit

Discord

Users viewing this thread:

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