of     1   

onqt
#225780280Saturday, September 30, 2017 4:40 PM GMT

Can anyone please tell me how to patch the hats with particles glitch in game? Some of my games the hats (like Firey horns) the particles go crazy when a character is touched. Other games they are fine. It just needs patched. Thanks.
SinisterMemories
#225780411Saturday, September 30, 2017 4:43 PM GMT

game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) for i, v in next, char:GetDescendants() do if v:IsA("Fire") or v:IsA("Sparkles") or v:IsA("Smoke") then V:Destroy() end end end) end) attempt to index global 'soul' (a nil value) R$1
TeamAvol
#225780529Saturday, September 30, 2017 4:45 PM GMT

game.Players.PlayerAdded:Connect(function(p) p.CharacterAdded:Connect(function(c) for i,v in next,c:GetChildren() do if v:IsA("Accessory") then for k,c in next,v.Handle:GetChildren() do if c:IsA("Fire") or c:IsA("ParticleEmitter") or c:IsA("Sparkles") then c:Destroy() end end end end end end ~TeamAv / Sigma

    of     1