V0xels
|
  |
| Joined: 30 Mar 2012 |
| Total Posts: 2072 |
|
|
| 09 Mar 2014 12:13 PM |
game.Players.PlayerAdded:connect(function(p) repeat wait() until p.Character character = p.Character head = character.Head head.Transparency = 1 fakehead = Instance.new("Part", character) fakehead.FormFactor = "Symmetric" fakehead.Size = Vector3.new(2, 1, 1) fakehead.BrickColor = BrickColor.new(head.BrickColor) fakehead.Name = "Fake Head" weld = Instance.new("Weld", head) weld.Part0 = head weld.Part1 = fakehead head.face:clone().Parent = fakehead mesh = Instance.new("SpecialMesh", fakehead) mesh.Scale = Vector3.new(1.25, 1.25, 1.25) mesh.Name = "Fake Mesh" end)
OUTPUT ERROR: 12:12:33.822 - Workspace.Script:10: bad argument #1 to 'new' (Color3 expected, got userdata) |
|
|
| Report Abuse |
|
|
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 09 Mar 2014 12:24 PM |
| fakehead.BrickColor = BrickColor.new(head.BrickColor) |
|
|
| Report Abuse |
|
|
Vyxium
|
  |
| Joined: 31 Aug 2010 |
| Total Posts: 1020 |
|
|
| 09 Mar 2014 12:28 PM |
BrickColor = head.BrickColor
maybe? |
|
|
| Report Abuse |
|
|
|
| 09 Mar 2014 12:29 PM |
| Why not just clone the head then make the original head transparent? |
|
|
| Report Abuse |
|
|
V0xels
|
  |
| Joined: 30 Mar 2012 |
| Total Posts: 2072 |
|
| |
|