triangle-exclamationCommon Errors

In this section, you will find answers to commonly encountered issues. Remember that most errors stem from incorrect configuration, lack of required resources, or insufficient modification.

Bear in mind that troubleshooting requires patience and precision. Try to carefully analyze the errors and systematically review possible solutions.

If the issue persists after verifying the configuration and available resources, please contact the support on the VMS Discord.


chevron-rightMy LMB does not work when creating a house.hashtag

This usually means that an external resource is blocking the Left Mouse Button input.

To fix this, open your config.lua, find the option Config.HousingCreatorControls and try replacing SELECT with one of the alternative control indexes for the Left Mouse Button:

['SELECT'] = {controlIndex = 92},
['SELECT'] = {controlIndex = 106},
['SELECT'] = {controlIndex = 122},
['SELECT'] = {controlIndex = 135},
['SELECT'] = {controlIndex = 142},
['SELECT'] = {controlIndex = 223},
['SELECT'] = {controlIndex = 229},
['SELECT'] = {controlIndex = 237},
['SELECT'] = {controlIndex = 257},
['SELECT'] = {controlIndex = 329},
['SELECT'] = {controlIndex = 346},
chevron-rightK4MB1 Shells have a buggy starting position inside.hashtag

You need to remove the qb-interior resource, and download Starter Shells from the official K4MB1 websitearrow-up-right.

chevron-rightRain/snow inside the shell for a while with qb-weathersynchashtag

Find the equivalents in your current qb-weathersync/client/client.lua and replace with the code below.

RegisterNetEvent('qb-weathersync:client:DisableSync', function()
    disable = true
end)
chevron-rightRain/snow inside the shell for a while with qbx_weathersynchashtag

Find the equivalents in your current qbx_weathersync/client/client.lua and replace with the code below.

RegisterNetEvent('qb-weathersync:client:DisableSync', function()
    disable = true
end)
chevron-rightNo time sync inside the shell with vSynchashtag

By default, vSyncarrow-up-right does not have the ability to stop and resume time or weather, but in the following file we have prepared such an option.

The marked lines of code have been added:

Last updated