I have a model with a lot of parts and when i unAnchor it and play it just falls apart, How do i fix this?
http://www.roblox.com/Model-item?id=270543872
If you absolutely need them to be unAnchored, then you can weld them together with this simple script that goes into the model.
local Model = script.Parent local Parts = Model:GetChildren() for i = 1, #Parts do if Parts[i]:IsA('Part') or Parts[i]:IsA('UnionOperation') then local weld = Instance.new('Weld', Parts[i]) weld.Part0 = Parts[i] weld.Part1 = Parts[i] end end
Help me out by marking this as answer and giving me rep :P