i’m trying to add a skirt to a character but i’m struggling to find the offset to place it correctly and also if the skirt is added while the char is playing an animation or it’s in horizontal, the skirt would be placed randomly
local Skirt = Table.Outfits[Outfit].Skirt:Clone()
local Weld = Instance.new("WeldConstraint",Character)
Skirt.Position = Character.LowerTorso.Position - Table.Outfits[Outfit].SkirtOffset
Weld.Part0 = Character.LowerTorso
Weld.Part1 = Skirt
Skirt.Parent= Character
Skirt.Name = "Skirt"