10-17-2010, 02:12 PM
Put this script in a part to make it kill anyone that touches it.
Code:
link(script.Parent.Collided, function(h)
if h.Parent:isA("Character") then
h.Parent:kill()
end
end)