of     1   

diamondflash
#196630153Saturday, August 20, 2016 9:09 PM GMT

Basically, I had an idea for scripting. "unless", like: function touch(hit) hit.Parent.Humanoid.Health = 0 unless hit.Name == ("name") script.Parent.Touched:connect(touch) That's it, thanks for reading.
F18ACE
#196631463Saturday, August 20, 2016 9:25 PM GMT

function touch(hit) if hit.Parent.Name ~= "name" then hit.Parent.Humanoid.Health = 0 end script.Parent.Touched:Connect(touch)

    of     1