So I made a game where you roll around as a ball and made a script that imports all of your hats and adds them to the ball you control. The problem is that some hats aren’t in the right position. Example:
Here’s the script:
for i,v in appearance.assets do
if v.assetType.name == "Hat" then
local newHat = insertService:LoadAsset(8263638977) -- this is a testing ID
print(v)
table.insert(hats,newHat)
elseif v.assetType.name == "FaceAccessory" then
local newHat = insertService:LoadAsset(8263638977) -- yep ,testing id.
table.insert(faceHats,newHat)
elseif v.assetType.name == "Face" then
local newFace = insertService:LoadAsset(v["id"])
local actualFace = newFace:GetChildren()[1]
actualFace.Parent = character
end
end
for i,v: Model in hats do
local descendants = v:GetDescendants()
for _,part in descendants do
if part:IsA("BasePart") then
part.Parent = character
part.Massless = true
part.CanCollide = false
part:PivotTo(character.HatAttachment.WorldCFrame)
local weld = Instance.new("WeldConstraint",character)
weld.Part0 = character
weld.Part1 = part
elseif part:IsA("SpecialMesh") then
part.Scale *= 5
end
end
end
There should be a way to do this but I just can’t figure it out.