“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!”
#newcity #gta #reallife #rp #pcgaming | TikTok I love it bro thanks it works real good for my city
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
Thanks buddy glad you enjoy it! ![]()
Should already work there buddy just might have to change a few locations in the config file ![]()
is it possible to make it so that when the player pays for washing, the money goes to some organization, such as a mechanic
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)
Can I add a job and can I speed it up?
Can you do for esx_society
tnx
thx buddy
Does someone gets stuck after flexing E ? It was working fine but now you get stuck and the props are glitching mid air.
…
i dont see download link
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.
Good to hear my work is still loved and receiving updates from the community <3
Thank you.


