So i made a kill brick that kills you, but when you are in a car, it doesnt work. Please help
Kill brick:
script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then hit.Parent:BreakJoints() end end)
Like what nilVector said, you are not touching the kill brick directly. What I would do is keep the kill brick but change the size to make it at least reach the seat in the car you are using (brick can be bigger) and turn CanCollide off, along with changing the Transparency property to 1 if you want the brick to be hidden.