Workshop Effect Sprinkles

Ok So in workshop you know how you can put sprinkles on the players well I’ve been trying to figure out out to make the sprinkles an environmental effect meaning that it doesn’t attach to the player instead it acts as if it is sparkles on the ground not moving with the player. So if anyone knows how to do that it would be very appreciated.

Instead of providing the event player when creating an effect, you need to provide a vector. Vectors are a set of coordinates in the game.

You can input it manually or you can get it by clicking the camera icon, which gets the current position of your camera.

2 Likes

if you want to place the effect at the player’s position, but don’t want it to follow the player, you can try setting the effect reevaluation to “none”. I don’t think it will follow the player then.

If that doesn’t work, you could set a variable to “Position of(Event Player)”, and then create the effect and input that variable as the position. Since the variable won’t update unless you manually do it, the position of the effect won’t update either.

2 Likes

Thank you So much bro