How to rapid add sound and particle to player?
I try debris is not working
local players = game:GetService("Players")
players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local head = character:WaitForChild("Head")
local particles = Instance.new("ParticleEmitter")
particles.Parent = head
end)
end)