How Do I Seal Accessory Gap / Weld?

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

weld it to the torso instead of the hrp

Dude, thank you so much. I have no idea how I overlooked that i forgot hrp doesnt rotate. Thank you and enjoy your day!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.