i've tried this
function Hello() plr=Touched:Connect(Hello) plr.Torso:Destroy() end script.Parent.Touched:connect(Hello)
Ok, Well When i Debugged it And hit the brick,, it did all of the stuff i wanted it to do EXCEPT kill the player, cause it was supposed to be a trap..
Its supposed to kill the player once he touches the brick
script.Parent.Touched:connect(function(plr) if plr.Parent:findFirstChild("Humanoid") then plr.Parent.Humanoid.Health = 0 end end)