Select car from different car in car selection menu and play with selected car in the scene

I have a car selection menu in which there are 3 cars to select.
I placed all cars in the game play scene.
I want to know that how to play with the selected car in the game play scene…
And save the car in player prefs if i restart the game.

Have your menu set an int variable to refer to which car is chosen. This int can be saved in playerprefs.

Then you can read that variable from playerprefs and instantiate a prefab of the desired car object with the control script.

Thanks.
I did this by setting the playerprefs in car selection menu and getting their values in the game play and its working perfectly.
Thanks