I am making a trailer system but when I try to put a car on it welds and then it makes it either float or move the tires all funky. If you know how to fix this or know of an alternative way please let me know thank you!
https://gyazo.com/a6e14c68fd883b4291530e5d74b2c4b9
https://gyazo.com/5e3dfa3a110b8516284da95e18baf2ff
local WeldBodyPart = veh.Body:FindFirstChild("WeldPart")
local TTWeldBodyPart = Car.Body:FindFirstChild("WeldPart")
if TTWeldBodyPart then
TTWeldBodyPart.Position = Car:FindFirstChildOfClass("VehicleSeat").Position
local WeldCon1 = Instance.new("WeldConstraint")
WeldCon1.Parent = WeldBodyPart
WeldCon1.Part0 = WeldBodyPart
WeldCon1.Part1 = TTWeldBodyPart
local WeldCon2 = Instance.new("WeldConstraint")
WeldCon2.Parent = WeldBodyPart
WeldCon2.Part0 = WeldBodyPart
WeldCon2.Part1 = TTWeldBodyPart
if TrailerInfo.Vehs.Car.Value == nil then
TrailerInfo.Vehs.Car.Value = Car
elseif TrailerInfo.Vehs.Car2.Value == nil then
TrailerInfo.Vehs.Car2.Value = Car
end
end