How i would dedect when a object placed on register?

  1. I want to dedect when something placed on register

image
image

1 Like

put an invisible box there and then use workspace:GetPartsBoundInBox() to get all parts there

1 Like

You can accomplish this by placing a script inside the register part

script.Parent.Touched:Connect(function(otherPart)
	print(otherPart) -- otherPart is the object that touched the register
end)

Yeah thats exactly what i need thanks

1 Like

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