diff --git a/shared/make/makeVeh.lua b/shared/make/makeVeh.lua index 660c9d4..80b272c 100644 --- a/shared/make/makeVeh.lua +++ b/shared/make/makeVeh.lua @@ -18,7 +18,6 @@ function makeVeh(model, coords, synced, fade) local veh = CreateVehicle(model, coords.x, coords.y, coords.z, coords.w, synced ~= false, false) SetVehicleHasBeenOwnedByPlayer(veh, true) if gameName ~= "rdr3" then - SetEntityAlpha(veh, 0, false) SetNetworkIdCanMigrate(NetworkGetNetworkIdFromEntity(veh), true) Wait(100) SetVehicleNeedsToBeHotwired(veh, false) @@ -32,6 +31,7 @@ function makeVeh(model, coords, synced, fade) unloadModel(model) Vehicles[#Vehicles + 1] = veh if fade ~= false then + SetEntityAlpha(veh, 0, false) CreateThread(function() fadeInEnt(veh) end)