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();
}
DiDi creator
Replied
Thank you so much for helping me!
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.
Join our Discord Server at https://discord.com/invite/Kzrt78AMMQ
Replied
Another example - this can also be made in a foreach loop.
foreach(Process proc in Process.GetProcesses()) {
if(proc.ProcessName == "RobloxPlayerBeta") {
proc.Kill();
}
}
Replied
If you genuinely mean a kill Roblox "script", everyone above has the wrong concept.
ExploitAPI WeAreDevs = new(); // new ExploitAPI(); if under C# 10.0
WeAreDevs.SendLuaScript("game:Shutdown()");
Replied
foreach (Process robloxProcess in Process.GetProcessesByName("RobloxPlayerBeta"))
robloxProcess.Kill();
you dont need the if statment
Nitro#6522 | UI Designer | Programmer
---------------------------------------------------------------------------------------------------
💜 Developer of Kronos 💜
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )