How would I make a particle kill a player

How do I make a particle kill a player if the particle touches the player?

I have tried using this script but I don’t think this will work:

local Player = game.Players.LocalPlayer
local character = script.Parent
local humanoid = character:WaitForChild("Humanoid")

local KillParticle = script.Parent.Parent.KillParticle

KillParticle.Touched:Connect(function(hit)
	humanoid.Health = 0
end)
1 Like

Particle are only that, visual representations. You can’t use Touched events on them since they don’t have one.

3 Likes

Oh no wonder that didn’t worked

3 Likes

Eh nevermind then. I’ll just use explosion

3 Likes

If I wanted to make lethal particles, I would have the particles be on BillboardGuis parented to small kill bricks. I would then have the kill bricks move like I want the particles to move.

2 Likes

I’ll use that later. Gonna use explosion for now since I use normal ParticleEmmiter

1 Like