local part = script.Parent local function onPartTouched(otherPart) print(part.Name .. " has touched " .. otherPart.Name)end part.Touched:Connect(onPartTouched)