local baseplate=script.Parent
baseplate.TouchEnded:Connect(function(otherPart)
local Part = otherPart.Parent:FindFirstChild("Part")
if Part ~= nil then
Part.Anchored = false
end
end)
It would be better if you could give us more information about what you are trying to achieve and using what method because as per your script I’m assuming your part is initially Anchored and already touching the baseplate, the script will not fire TouchEnded event unless your Part is Unanchored at a height so that it could bounce on the Baseplate to trigger the event.