[FREE] Advanced Carwash script for | qb-core | ESX | standalone |


help please

1 Like

“Bro, it would be awesome to see this MLO paired with this script! Let me know—I’d be thrilled to create a video. Keep up the fantastic work!”

2 Likes

#newcity #gta #reallife #rp #pcgaming | TikTok I love it bro thanks it works real good for my city

2 Likes

Make sure to edit the config.lua file since you are using ESX you need to change some things in there, Its documented in the file buddy

1 Like

Thanks buddy glad you enjoy it! :partying_face:

Should already work there buddy just might have to change a few locations in the config file :slight_smile:

3 Likes


I’m getting this error. How do I fix this?

1 Like

is it possible to make it so that when the player pays for washing, the money goes to some organization, such as a mechanic

1 Like

Yes all you have to do is edit the server.lua like so:
Replace the RegisterCallback event on line 6 with this:

RegisterCallback('carwash:CanPurchaseCarWash', function(source, cb)
    local src = source
    local Player = GetPlayer(src)
    if (GetPlayerAccountBalance(Player, Config.cash_account_name) >= Config.cost or GetPlayerAccountBalance(Player, Config.bank_account_name) >= Config.cost) then
        if RemovePlayerMoney(Player, Config.cash_account_name, Config.cost, 'Washed Vehicle') then
            exports['qb-management']:AddMoney('mechanic', Config.cost) -- Add config.cost amount to society account
            cb(true)
        elseif RemovePlayerMoney(Player, Config.bank_account_name, Config.cost, 'Washed Vehicle') then
            exports['qb-management']:AddMoney('mechanic', Config.cost) -- Add config.cost amount to society account
            cb(true)
        end
    else
        cb(false)
    end
end)
2 Likes

Can I add a job and can I speed it up?

1 Like

Can you do for esx_society
tnx

2 Likes

thx buddy

2 Likes

Does someone gets stuck after flexing E ? It was working fine but now you get stuck and the props are glitching mid air.

1 Like


i dont see download link

1 Like


how to fix it

Good work on this my man. Works great! Best car wash script Ive found yet. Ive made a couple updates for qbox compatibility. Although most qb-core functions work for qbox, I added full qbox compatibility with ox_lib. Updated money check to use cash first, then bank money and also added regular, supreme, wax, and pro wash options.

1 Like

Good to hear my work is still loved and receiving updates from the community <3
Thank you.

1 Like