Vehicle Exit Script Solution

So I’ve recently made players unable to go through with vehicles using Roblox Studio’s NoCollisonConstraint feature. However, while exiting vehicles I have noticed that you would get stuck inside the cars. I have been looking for a way to teleport players outside of the vehicle without them colliding with the outer exterior of the vehicle.

As a solution I have tried to place ExitPosition attachments on the outsides of the cars and than teleport players to the attachment when exiting. Still yet you would get stuck exiting the vehicles.

I am asking if there is any better solution to this issue.

Well, first code would be nice, since what you are saying with the exit attachment should work.

One idea would to just teleport them to the left of the seat outside the car. For example,

Character.HumanoidRootPart.Position = Character.HumanoidRootPart.Position + Character.HumanoidRootPart.CFrame.RightVector * -10

Thank you for your guidance, your solution worked perfectly.

However, I also used support from this Devforum post that helped me find a resolution.