totaka1
|
  |
| Joined: 26 Apr 2009 |
| Total Posts: 716 |
|
|
| 16 Aug 2009 02:55 PM |
m = Instance.new("Model") m.Parent = game.Workspace m.Name = "totaka1's substitute body" p = Instance.new("Part") p.Name = "Head" p.Position = Vector3.new(0,20,0) p.Parent = m w = Instance.new("Part") w.Name = "Torso" w.Position = Vector3.new(0,19,0) w.TopSurface = "Weld" w.Parent = m w:makeJoints() wait(1) weld = Instance.new("Weld") weld.Parent = w weld.Part0 = w weld.Part1 = p wait(8) h = Instance.new("Humanoid") h.Parent = m
everything else spawns, but there is no weld, can some1 help?
P.S. i know its not a good body |
|
|
| Report Abuse |
|
|
|
| 16 Aug 2009 03:10 PM |
| and the weld.C0? weld.C0 = CFrame.new(0, -1.2, 0) |
|
|
| Report Abuse |
|
|
totaka1
|
  |
| Joined: 26 Apr 2009 |
| Total Posts: 716 |
|
| |
|
totaka1
|
  |
| Joined: 26 Apr 2009 |
| Total Posts: 716 |
|
|
| 16 Aug 2009 03:19 PM |
| when both objects spawn, the fly apart, and nothing happens. Any Ideas? |
|
|
| Report Abuse |
|
|
|
| 16 Aug 2009 03:24 PM |
m = Instance.new("Model") m.Parent = game.Workspace m.Name = "totaka1's substitute body" p = Instance.new("Part") p.Name = "Head" p.Position = Vector3.new(0,20,0) p.Parent = m w = Instance.new("Part") w.Name = "Torso" w.Position = Vector3.new(0,19,0) w.TopSurface = "Weld" w.Parent = m w:makeJoints() wait(1) weld = Instance.new("Weld") weld.Parent = w weld.Part0 = w weld.Part1 = p weld.C0 = CFrame.new(0, w.Position.y, 0 - Vector3.new(0, w.Position.y, 0)) wait(8) h = Instance.new("Humanoid") h.Parent = m |
|
|
| Report Abuse |
|
|