Categories > Coding > C# >
[RELE] SUPER COOL C# TERMINATE ROBLOX CODE!!!
Posted
private void button1_Click(object sender, EventArgs e)
{
Process[] processes = Process.GetProcessesByName("RobloxPlayerBeta");
foreach (Process process in processes)
{
process.Kill();
}
}
Replied
if that is cool that means my Kinoe tab system is legendary
Cancel
Post
Replied
Here you go
foreach (Process robloxProcess in Process.GetProcessesByName("RobloxPlayerBeta"))
robloxProcess.Kill();
Cancel
Post
Nitro#6522 | Xaml & C# Developer
---------------------------------------------------------------------------------------------------
💜 Developer of Kronos 💜
Senior Dev of Orbit
Replied
For the one-liner lovers: i didnt test because im on linux
Array.ForEach(Process.GetProcessesByName("RobloxPlayerBeta"), x => x.Kill());
Cancel
Post
Nitro#6522 | Xaml & C# Developer
---------------------------------------------------------------------------------------------------
💜 Developer of Kronos 💜
Senior Dev of Orbit
Replied
@ItsNitro I didn't use ChatGPT. I don't understand why people say that I do lol.
Cancel
Post
https://cdn.discordapp.com/attachments/1084217000034840596/1134374525358833725/Banner.png
https://i.imgur.com/nB480KG.png
Added
@tempegoreng HUH?! I guess I should have expected it to say that because that's the only "standard" way to do it unless you do like .ToList().ForEach()
Cancel
Post
Replied
Nice job. That is effective and it does work as a matter of fact. :)
Cancel
Post
Join our Discord Server at https://discord.gg/uAqUBNhWDa
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post