How to make user profiles to play same character and save data according to the player?

I’m going to make a game which is not a LAN multiplayer game. I need to generate the same character in the game to play when a user login in to the game. and also, the user could have to save their game when they want and also load their game later.

I’m new to Unity .Please anyone help me , It will be very appreciated !

Thanks!

Take a look at PlayerPrefs. They are key and value pairs that will be stored in the plist on the device they are saved on. If you need to store the info on a server, you should make a database and pass the player prefs to it.