Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does player.Character = Person not work? [MIND CONTROL]

Asked by
3dsonicdx 163
10 years ago

I remember there were these 'Mind Control' things running around that used to work in online play. I've been wondering a way to get around the death when you mind control somebody.

Most of them were when you click on somebody, your player.Character becomes something else, and it would work back in the old times(It was fun back then.)

Even preventing the character from respawning to do this isn't really a full-on solution.

Has anyone else found anything that works as a viable option? One of my old techniques I still use is changing the camera of the player and using mouse-movement(The player that's being controlled follows the mouse)

2 answers

Log in to vote
0
Answered by
Dom2d2 35
10 years ago

Instead of saying

Player.Character = Person

you would need to do


Person = Player.Character

Remember that Person is a variable you are setting, to the value of Player.Character. You can't set Player.Character to Person.

0
You don't understand what I'm trying to say. I'm changing the player's character to 'person'. 3dsonicdx 163 — 10y
1
Ok, so you want to try and control another player's character, for example? It's a lot more complicated than just changing it like you showed. I'm not sure of the exact methods, but you cannot say Player.Character = Dom2d2. Dom2d2 35 — 10y
Ad
Log in to vote
0
Answered by 10 years ago
Person = player.Character

Answer this question