|
| 21 Apr 2012 10:44 PM |
I am trying to make a person nameles when they respawn but still make it look like they have a normal head...
game.Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) local a=Character.Head:Clone() Character.Head.Transparency=1 a.Parent=Character a.Name="scndHead" a.CFrame=CFrame.new(Character.scndHead.CFrame.p)
local w = Instance.new('Weld', Character) w.Part0 = Character.scndHead w.Part1 = Character.Torso
end) end)
no output... it sticks the scndhead inside the torso |
|
|
| Report Abuse |
|
|
| 21 Apr 2012 10:53 PM |
w.Part1 = Character.Head
http://wiki.roblox.com/index.php/How_To_Make_Humanoids_Without_GUI |
|
|
| Report Abuse |
|