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

Help on making a fake head for a character(?

Asked by
Adryin 120
10 years ago

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?

0
This isn't the place to go to learn how to do things. That's what the wiki or the Scripting Glossary are for. NoahWillCode 370 — 10y
0
Any links ma'am? Adryin 120 — 10y
0
I'll help him out :P l0cky2013 135 — 10y
0
I've never used a weld for a head so.. Adryin 120 — 10y

1 answer

Log in to vote
-1
Answered by
l0cky2013 135
10 years ago

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
Ad

Answer this question