NOTE: IF YOU HAVE OPTED TO INSTALL FIVEM NOT ON YOUR C DRIVE THIS WILL NOT WORK
This script downloads and installs an edited version of cp702's Siren Setting Limit Adjuster, which fixes broken lights in newer FiveM game builds. Many players have struggled with lighting issues in FiveM, and this version resolves compatibility problems across all current FiveM builds. Huge thanks to cp702 for creating the original tool, which this script adapts and keeps up-to-date.
Instructions:
- Open PowerShell
- Press Win + S, type PowerShell, and right-click on Windows PowerShell.
- Select Run as Administrator to ensure the script has the necessary permissions.
- Allow Remote Script Execution:
- To allow running scripts downloaded from the web in the current PowerShell session, enter the following command:
Code:Set-ExecutionPolicy RemoteSigned -Scope Process
- When prompted, type Y to confirm.
- To allow running scripts downloaded from the web in the current PowerShell session, enter the following command:
- Download and Run the Script:
- Run this command in PowerShell to download and install the Siren Setting Limit Adjuster plugin:
Code:# Step 1: Download the script to a temporary file $scriptUrl = "https://nextgen-rp.com/resources/siren-fixer-download-script.2/download" $tempFilePath = "$env:TEMP\siren-fixer-download-script.ps1" Invoke-WebRequest -Uri $scriptUrl -OutFile $tempFilePath -UseBasicParsing # Step 2: Run the downloaded script Invoke-Expression -Command $tempFilePath
- This command downloads the script, which then installs the plugin to the correct FiveM directory (C:\Users\<YourUsername>\AppData\Local\FiveM\FiveM.app\plugins).
- Run this command in PowerShell to download and install the Siren Setting Limit Adjuster plugin: