|
hello i not sure on this i am telling my script to turn of when a new object re-spawns. here is my code: var spawn : Transform; //drag your spawn point to here in the inspector - probably make it an empty gameobject so you can move it about on the diving board //This is the player that it will destroy var MainPlayer: GameObject; function Update() { if(Input.GetKey(KeyCode.N)){
// if i press the N key the new player will respon on the current players position and then // the first player will get destroyed and then the script will disable it self } can anyone help please thank you :) }
(comments are locked)
|
|
I hope I have understood your question correctly. I have made some modifications to your script.
Is this what you were looking for? Hey thank you but that is doing the same ting as my first script the player re-spawns and the first player destroys it self but the "NewMoveScript" on the player does not disable it self it stays on
Nov 02 '10 at 04:16 AM
MC HALO
It does disable itself. If you look at the little checkmark on the script in the Inspector, you can see it gets removed after spawning the new player. If you meant that it should be removed, you should use Destroy(this);
Nov 02 '10 at 04:20 AM
Atnas1010
Sorry dude had the script attached to the wrong player loll thank you so much :)
Nov 02 '10 at 04:27 AM
MC HALO
You're welcome.
Nov 02 '10 at 04:27 AM
Atnas1010
(comments are locked)
|
