need a script

i need a script to loud the player at the same location each time
coz some times he loud out of the game

if some one cud help coz i cant seem to find some thing

The word “loud” is not a verb so I have absolutely no idea what you mean.

And you should not make multiple threads about a single problem.

Try to express clearly your needs. Please follow this link and learn Unity: Learn

I suspect that loud==load. If so attach this script to an object. Put the object where you want it to load the player and drag the player prefab to to spot that says myPlayer and next time you need help, post in the help or scripting section.

using UnityEngine;
using System.Collections;

public class PlayerSpawner : MonoBehaviour {
	public GameObject myPlayer;
	public GameObject currentPlayer;

	// Use this for initialization
	void Start () {
		//SpawnPlayer();
	}
	
	// Update is called once per frame
	void Update () {
	
	}
	void SpawnPlayer()
	{
		currentPlayer=Instantiate( myPlayer,transform.position, transform.rotation) as GameObject;
	}
}