From 63ba2608a7bfcdde5830e2c354099cf3878336e3 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Wed, 4 Oct 2023 15:06:45 +0100 Subject: [PATCH] close studios on uninstall --- Bloxstrap/Bootstrapper.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs index 8c1b51f..f2c4e1e 100644 --- a/Bloxstrap/Bootstrapper.cs +++ b/Bloxstrap/Bootstrapper.cs @@ -680,6 +680,12 @@ namespace Bloxstrap process.CloseMainWindow(); process.Close(); } + + foreach (Process process in Process.GetProcessesByName("RobloxStudioBeta")) + { + process.CloseMainWindow(); + process.Close(); + } } catch (Exception ex) {