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

Playing as a Model?

Asked by
pc707 20
9 years ago

How would I make the player in the server play as a model like if I make a car model how would I make the player start controlling it like its their character?

0
Name one part head, and put a humanoid in it... I think?... D: lucas4114 607 — 9y
0
I really think it's Welding to you char (Maybe Invis Char) and adjusting camera. I don't know BUT this is kind of a repeat question alphawolvess 1784 — 9y
0
I have tried this myself, and had some success but I could never change the torso and head without my character dying BSIncorporated 640 — 9y

2 answers

Log in to vote
1
Answered by 9 years ago

You'll need a model, with critical parts for a Humanoid to live (Torso, Head), you can see all parts and the correct hierarchy here.

Then, use a LocalScript with this code:

local target = workspace.Model -- Use the model you wish
game.Players.LocalPlayer.Character = target
Instance.new("Humanoid", target)

Note: Needed parts need to be in the Humanoid's parent, and welded, and cannot be set, unfortunately, with it's properties Torso, RightArm and RightLeg.

Note (By experience): It's safer to add the Humanoid, after you set the player's character.

Ad
Log in to vote
0
Answered by 9 years ago

Try making a Fake Torso and parts and such, though have a normal Humanoid invisible so it can work.

Answer this question