local trapPart = script.Parent
local function onPartTouch(otherPart)
otherPart:Destroy()
end
trapPart.Touched:Connect(onPartTouch)