|
| 06 Mar 2012 07:34 PM |
Ok, so I have a mesh like tool for a popcorn bag, and I'm having trouble keeping it together when I select it, Everything just flips everywhere - All the parts sides are set to weld, and I even welded it using the CmdUtl T-T
can someone help me? |
|
|
| Report Abuse |
|
|
|
| 06 Mar 2012 07:35 PM |
I'm not good at tools at all but try using the :MakeJoints() Method? |
|
|
| Report Abuse |
|
|
|
| 06 Mar 2012 07:55 PM |
1. CmdUtl FAILS
2. Piece = script.Parent:GetChildren()
for i = 1,Piece do if Piece:isA("BasePart") then Pieces:MakeJoints() end end
Supposedly works in output, Yet will not hold parts together.. |
|
|
| Report Abuse |
|
|
|
| 06 Mar 2012 07:58 PM |
O wait..
Piece = script.Parent:GetChildren()
for i = 1,#Piece do if Piece:IsA("BasePart") then Pieces:MakeJoints() end end
Saying IsA; is a nil value.. ? |
|
|
| Report Abuse |
|
|
|
| 06 Mar 2012 07:59 PM |
...
Piece = script.Parent:GetChildren()
for i = 1,#Piece do if Piece:IsA("BasePart") then Piece:MakeJoints() end end
Workspace.Tool.Script:4: attempt to call method 'IsA' (a nil value) |
|
|
| Report Abuse |
|
|
|
| 06 Mar 2012 08:10 PM |
Erm, i think I did that int he wrong tense.. Can someone help D: ?
|
|
|
| Report Abuse |
|
|