close studios on uninstall

This commit is contained in:
bluepilledgreat 2023-10-04 15:06:45 +01:00
parent f971be3f62
commit 63ba2608a7

View File

@ -680,6 +680,12 @@ namespace Bloxstrap
process.CloseMainWindow();
process.Close();
}
foreach (Process process in Process.GetProcessesByName("RobloxStudioBeta"))
{
process.CloseMainWindow();
process.Close();
}
}
catch (Exception ex)
{