Categories > Exploiting > WRD Exploit API >
Kill Roblox script
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
Replied
Code:
Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
for (int i = 0; i < processesByName.Length; i++)
{
Process process = processesByName[i];
process.Kill();
}
Cancel
Post
DiDi creator
Replied
Thank you so much for helping me!
Cancel
Post
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.
Cancel
Post
Join our Discord Server at https://discord.gg/uAqUBNhWDa
Replied
Another example - this can also be made in a foreach loop.
foreach(Process proc in Process.GetProcesses()) {
if(proc.ProcessName == "RobloxPlayerBeta") {
proc.Kill();
}
}
Cancel
Post
Random quote here...
Replied
foreach (Process robloxProcess in Process.GetProcessesByName("RobloxPlayerBeta"))
robloxProcess.Kill();
you dont need the if statment
Cancel
Post
nltr | Xaml & C# Developer | Former Fluxus Administrator
------------------------------------------------------------------------------------
💜 Developer of Kronos 💜
Senior Dev of Orbit
Users viewing this thread:
( Members: 0, Guests: 2, Total: 2 )
Cancel
Post