Motor6d tool's Collision problem

Can someone please check my script why the tool collision still disable after I drop them
I tried using AncestryChanged but that does nothing
It used to work before I change my tool script to support motor6d for animating purpose
CustomToolPickUp.rbxl (93.9 KB)

Just checked it out and the AncestryChanged event gives you the child then the parent, not the parent first.

Here (Inside script under tool):

tool.AncestryChanged:Connect(function(child, parent)
	if parent == workspace then
		tool.Model.CanCollide = true
	end
end)
1 Like