For example, if you want to make a Instance part and weld it as the character's had while the normal head for the character is invisible, what will will I do?
I would create a weld
that connects the torso
and the fake head
.
Example
local char=Workspace.Player1 local torso=char.Torso local realhead=char.Head local head=realhead:clone() head.Name="FakeHead" head.Parent=char local weld=Instance.new("Weld", torso) weld.Part0=torso weld.Part1=head weld.C1=CFrame.new(0,-1.5,0) realhead.Transparency=1