> For the complete documentation index, see [llms.txt](https://uwp.jinxz.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://uwp.jinxz.dev/information/downgrade.md).

# How to downgrade Roblox

This section includes a step-by-step guide on installing the old version of Roblox using PowerShell and other necessary steps.

## How to Install Old Roblox

To install the older version of Roblox, follow these steps:

1. Go to the Microsoft Store.
2. Turn off auto-updates in the settings to prevent the UWP update.
3. Uninstall the existing Roblox application.
4. Open PowerShell and run the following command to install the old version:

   ```powershell
   Invoke-WebRequest -Uri "https://github.com/cerealwithmilk/uwp/releases/download/2.592.586.0/RobloxUWP-2.592.586.0-cerealwithmilk.Msixbundle" -OutFile "$(Get-Location)\RobloxUWP-2.592.586.0-cerealwithmilk.Msixbundle"
   Add-AppxPackage -Path "$(Get-Location)\RobloxUWP-2.592.586.0-cerealwithmilk.Msixbundle"
   Remove-Item "$(Get-Location)\RobloxUWP-2.592.586.0-cerealwithmilk.Msixbundle"
   ```
