CC#•Created by Cruddy on 5/6/2023 in #help ❔ ✅ Kill Process
Basically, this code wont kill the process RobloxPlayerLauncher.exe
private void button1_Click(object sender, EventArgs e)
{
foreach (Process process in Process.GetProcessesByName("RobloxPlayerLauncher.exe"))
{
process.Kill();
}
}