Hello, Guest

By registering with us, you'll be able to discuss, share and private message with other members of our community.
What's new

SCRIPT Flashing lights on

Alexalsaud

Administrative
Staff member
Admin
Joined
Aug 5, 2024
Messages
337
ICoins
1,501

Flashing lights on


A script that allows you to leave flashing lights on when exiting the car

JavaScript:
mp.events.add('playerExitVehicle', (player, vehicle) => {
    if (player.vehicle) {
            player.vehicle.setSiren(true);
        }
    }
});

Create a файл.js on the server side and connect it to index.js. require('/name of your file, where the код.js' itself is located);
 
Back
Top