I want there to be a piece to kill me and other players when they touch it.
Put this script into whatever brick that you want it to kill you.
function onTouched(hit) local h = hit.Parent:findFirstChild("Humanoid") if h ~= nil then h.Health = 0 end end script.Parent.Touched:connect(onTouched)