|
| 07 Jul 2014 02:22 PM |
This only moves two parts into a model and breaks the rest, and only two parts are cloned onto my back.. It's supposed to create a back sword.. All variables are already defined. Output:
12:19:46.665 - Handle is not a valid member of Model 12:19:46.665 - Script 'Players.Player1.Backpack.Epic Part 2', Line 59 12:19:46.666 - Stack End
Tool.Unequipped:connect(function() for t, c in pairs(Tool:GetChildren()) do c:Clone().Parent = C; c.Anchored = true; end local Tbl2 = {1,2,3,4,5,6,7,8,9} for pt2, m2 in pairs(C:GetChildren()) do for j, l in pairs(Tbl2) do if m2.Name == "Part"..tostring(l) then Weld2(C.Handle, m2) local M = Instance.new("Model", C); M.Name = "Back Sword"; m2.Parent = M C.Handle.Parent = M; local MG = M:GetChildren(); for i = 1, #MG do Weld(C.Torso, MG[i], 0,0,0,0,0,-2); MG[i].Anchored = false; end end end end end) |
|
|
| Report Abuse |
|
domorox17
|
  |
| Joined: 06 Mar 2012 |
| Total Posts: 1710 |
|
|
| 07 Jul 2014 02:23 PM |
| Welds break when cloning or reparenting. |
|
|
| Report Abuse |
|
Conmiro
|
  |
| Joined: 13 Oct 2008 |
| Total Posts: 3393 |
|
| |
|
| 07 Jul 2014 02:31 PM |
I get the same issue. It's at the part where I put
"Weld2(C.Handle, m2)"
It keeps saying it's not a valid ember of model (my char) |
|
|
| Report Abuse |
|
| |