[REQ] Keep Vehicle Clean Script

Hey i’m wondering if someone can help me make a script that makes my car be clean all the time like this mod.

If someone can help me with this, that would be awesome thanks

Hi Red2!
Although i cant help you with making it a script, what i can tell you is that you can run it client-side and it works amazing, im so happy with it because i drive my white charger all day long!

Citizen.CreateThread(function()
	while true do
		if IsPedInAnyVehicle(PlayerPedId(), false) and (GetPedInVehicleSeat(GetVehiclePedIsIn(PlayerPedId(), false), -1) == PlayerPedId()) then
			SetVehicleDirtLevel(GetVehiclePedIsIn(PlayerPedId(), false), 0.0)
			WashDecalsFromVehicle(GetVehiclePedIsIn(PlayerPedId(), false), 100.0)
			RemoveDecalsFromVehicle(GetVehiclePedIsIn(PlayerPedId(), false))
		end
	end
end)