I started to learn how to script like a week ago and I was just wondering on how you would make a character into a part? People have given me:
local char = game.Workspace.Character game.Players.LocalPlayer.Character = char game.Workspace.CurrentCamera.CameraSubject = char.Humanoid
I have made a Model with a Head and a Humanoid.
What should I replace Character
with?
Thanks, WiseDumbledore
Just replace it with the name of your model. If your model is called "CustomCharacter", you'd use
local char = game.Workspace.CustomCharacter
It will only work if that model is located in workspace.