Hello, I am trying to make a Skin for my Game Meat Hunters. And The head keeps breaking, I’m not too sure whats happening
What are you attempting to achieve? Try to make the head there and not loose parts.
What is the issue? The head keeps breaking into parts and the main head part isn’t there when you test it. Screenshots below! 1st what is looks like (When its not test mode) can’t think of the name 2nd screenshot in play mode
What solutions have you tried so far? I have messed around with the Anchored, Can collide and Locked settings. And It doesn’t work
If you do it manually, it won’t work. You should do it by script.
Steps to weld parts using a script
Group all of the desired parts and insert a script to the group.
Name the part which you want all of the parts to be welded to “MainPart” (Or however you’d like).
Write the following script:
local Parts = script.Parent:GetChildren()
local MP = script.Parent.MainPart -- The name of the main part
for _,Part in pairs(Parts) do
if Part:IsA("Part") and Part ~= MP then
local Weld = Instance.new("Weld", Part)
Weld.Part0 = MP
Weld.Part1 = Part
Weld.C0 = MainPart.CFrame:Inverse() * Part.CFrame
end
end