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)
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.