My car turns into a indistinguible thing

I dont really know if this is the right category, but i dont really know what is this, but however i made a script to change the camera subject to the car, and it worked, but when i enter the driverseat the car turns into this creepy cursed figure

image

heres the script

local character = script.Parent
local humanoid = character:WaitForChild("Humanoid")

function onSeated(isSeated, seat)
	if isSeated then
		if seat:IsA("VehicleSeat") then
			local camera = workspace.CurrentCamera
			camera.CameraSubject = seat.Parent.PrimaryPart
		end
		if seat:IsA("Seat") then
			local camera = workspace.CurrentCamera
			camera.CameraSubject = seat.Parent.Parent.Parent.PrimaryPart
		end
	else
		local camera = workspace.CurrentCamera
		camera.CameraSubject = character.Humanoid
	end
end
humanoid.Seated:Connect(onSeated)

If the car is a model, then try changing the car’s LevelOfDetail property.