Ok so I have a gear I made myself and you are able to hold it but I want to make it so that when the user clicks their mouse particles are emmited from the gear for a couple seconds then disappear. Any ideas on what to do? C:
So you want a gear to emit particles when activated? I think it would be like this. And put this inside the tool, not the handle.
local deb = false local time = 3 script.Parent.Activated:connect(function() if not deb then deb = true local particles = Instance.new("ParticleEmitter") particles.Parent = script.Parent.Handle wait(time) particles:remove() deb = false end end)