Particle Effect when Jumping

  1. What do you want to achieve? I want to make a particle effect like in this video: https://www.youtube.com/watch?app=desktop&v=IzTyYmULmt8

  2. What is the issue? I don’t know how

  3. What solutions have you tried so far? Everyone on DevForum is talking about how to script it but I just want to know how to make those particles.

Thanks!

That’s because you need to program it :sweat_smile:

If you can’t/don’t want to program it, you can pay someone on the talent hub to make it for you, or you can find it in #resources:community-resources.

Also, the video you linked has the exact script to get this effect in the description:

I want to know HOW to make the effect, and from what I know that’s not something you script.

1 Like

The video is titled “How to make Jump Effect on Roblox Studio” … ?

The particle effect is entirely from something programmed. You can add an existing program to your game to get it.

The program looks something like:

  • On jump request
  • Create a new ParticleEmitter
  • Set the ParticleEmitter to have the dust texture, to only output sideways, to be attached to the feet, etc
  • Call PartileEmitter:Emit(60) (or some other number)
  • Destroy the ParticleEmitter

You either program it yourself or you add someone else’s program. Roblox doesn’t have a built-in program and method to add a jump particle.

2 Likes

I think hes talking about the actual particle effect. Not getting it to function.

In roblox studio if you have a part you can add a “particle emitter” to that part.
From there you tweak values, add a texture, etc. To get it to your liking.
Then you script it to the character via code to make it only work when jumping.
Heres a tutorial on how to make a particle.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.