Hello!
I’m encountering an issue with my back accessory / script i have no idea if this is considered scripting support or what.
The goal is to get the hoe to weld to my back properly and follow the rotations, Below is a video of what i am talking about. I would like to just seal that gap.
Here is my script
local model = ReplicatedStorage.assets.Hoe:Clone()
model.Parent = character
for _, part in model.Handle:GetChildren() do
if not part:IsA("BasePart") then continue end
local weld0 = Instance.new("Weld")
weld0.Part0 = part
weld0.Part1 = character.PrimaryPart
weld0.C0 = offsets[part.Name] -- Just basic CFrame position no CFrame.Angles()
weld0.Parent = part
end