10-16-2010, 08:59 PM
Use link(object.event, function) to connect an object's event to a function. The function should take 1 argument, which will be the other part it collided with.
Code:
link(script.Parent.Collided, function(h)
print(script.Parent.Name.." collided with "..h.Name)
end)