Weld works weird

I’m trying to weld Review to player
Script:

local weld = Instance.new("Weld")
weld.Parent = workspace.BulletHoles
weld.Part0 = player.Character.PrimaryPart
weld.Part1 = hitbox

But something works not quite right.

Have you tried checking the property, “Massless” of the hitbox object?

I didn’t even guess, I can try

Thanks! It helped a lot. But when I use weld, my calculations are broken and the rotation of hitbox changes to 0,0,0. So I just changed weld to WeldConstraint. And everything works!

1 Like