diff --git a/Bloxstrap/Helpers/Integrations/RbxFpsUnlocker.cs b/Bloxstrap/Helpers/Integrations/RbxFpsUnlocker.cs index d61eb32..6803c78 100644 --- a/Bloxstrap/Helpers/Integrations/RbxFpsUnlocker.cs +++ b/Bloxstrap/Helpers/Integrations/RbxFpsUnlocker.cs @@ -68,7 +68,10 @@ namespace Bloxstrap.Helpers.Integrations if (Directory.Exists(folderLocation)) { CheckIfRunning(); - Directory.Delete(folderLocation, true); + + DirectoryInfo directory = new(folderLocation); + directory.Attributes &= ~FileAttributes.ReadOnly; + directory.Delete(true); } return;