So I have a car. When a player clicks a GUI Button, the player will teleport from their position into the car sitting in the seat.
Is there a way I can teleport the player and have them automatically sit in the seat?
Have them tp, via CFrame, and in my assumption they would automatically sit on their own.
is this what you are looking for?
game.Players.LocalPlayer.Character:MoveTo(game.workspace.VehicleSeat.Position) -- In the brackets, insert the path to your seat and add ".Positon" at the end of it
i have tested it, and it works for me