How to make when i click the mouse button 1 down the gun fire particle system lit up. Please someone help me with this because i find on youtube but sadly not has .
if you guys know how to make gun fire particle system please reply below and i will answer it ASAP !
So I’m assuming that you want the gun to emit a muzzle flash when the gun is fired.
Here’s a somewhat detailed tutorial on how to get it working.
First, add an attachment to the handle and position it at the gun muzzle point and also make sure it’s oriented correctly.
Second, add a particle emitter to the attachment and customize it to whatever you want it.
Third, add a few lines of code to your gun script where the script or function will run when the gun is fired (and yes this does require a little bit of knowledge in scripting)
local effect = script.Parent.Handle.Attachment.ParticleEmitter
effect:Emit(20) -- this will emit the muzzle flash particle, yes you can change the number to change how many particles are emitted
Not sure if this will help you but I’ve tried my best!