-
I want to dedect when something placed on register


I want to dedect when something placed on register


put an invisible box there and then use workspace:GetPartsBoundInBox() to get all parts there
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
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.