Installation

Quasar Shutters Creator lets you place realistic shutters on any shop or location across the map. Choose from multiple types and sizes, open or close them using items, jobs, or commands — even enable forced entry for extra immersion. Fully configurable and optimized, it’s the perfect tool for protecting or customizing stores in your FiveM roleplay world.


Download Script

To download the assets needed for this script, you must access the official Cfx.re portal, where all assets purchased through Tebex are managed.

  1. Go to the following link: 🔗 https://portal.cfx.re/assets/granted-assets

  2. Log in with the same Cfx.re account you used to make the purchase.

  3. In the list of granted assets, find and download the following:

  • Shutters Creator


Download Dependencies

This script requires some mandatory dependencies to function correctly. Make sure to download and extract them inside your server’s main directory, keeping their original folder structure intact.


Remove Other Scripts

This script may cause conflicts or errors if you use other shutters systems on your server. It’s strongly recommended to remove them completely before installation to prevent compatibility or functionality issues.


Server.cfg Placement

This script must always start after es_extended or qb-core, never before. We recommend placing it below them in your server.cfg, ensuring all dependencies are loaded first to prevent errors or unexpected behavior.


Database Setup

This script includes an essential database required for its operation. You must import it before starting your server, preferably using HeidiSQL or any other manager compatible with MariaDB/MySQL.

DATABASE ESX/QBCORE
CREATE TABLE IF NOT EXISTS `qs_shutters` (
	`id` INT(11) NOT NULL AUTO_INCREMENT,
	`creator` VARCHAR(80) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`name` VARCHAR(64) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`model` VARCHAR(64) NOT NULL DEFAULT 'sf_prop_sf_shutter_01a' COLLATE 'utf8mb3_general_ci',
	`coords` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
	`open_offset` FLOAT NOT NULL DEFAULT '3',
	`interact_points` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`item` VARCHAR(64) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`job` VARCHAR(30) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`job_grades` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`gang` VARCHAR(30) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`gang_grades` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`blip` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
	`is_closed` TINYINT(1) NULL DEFAULT '1',
	PRIMARY KEY (`id`) USING BTREE,
	INDEX `creator` (`creator`) USING BTREE
)COLLATE='utf8mb3_general_ci';

Shutters Creation Menu

To access the shutters creation menu, simply use the following command in the in-game chat:

/shuttercreator

This command will open the Quasar Shutters Creator interface, allowing you to create, edit, and configure your motel quickly and visually.