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?
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.
Try making a Fake Torso and parts and such, though have a normal Humanoid invisible so it can work.