Kept trying and couldn’t find a way to do it. Here’s a video of an effect I’m going for.
Any help is appreciated.
Kept trying and couldn’t find a way to do it. Here’s a video of an effect I’m going for.
Any help is appreciated.
Spawn or clone transparent instances with the billboard gui inside them, parent them to the workspace and give them a random velocity.
Is there a documentation on this? I’ve never worked with the velocity stuff
Technically its depricated, but it still works fine. Basepart.Velocity = Vector3.new(math.random(min, max), 4, math.random(min, max))
It’s good not to use deprecated values even though they work, as they will not be updated and will possibly have bugs in the future. Use AssemblyLinearVelocity
or ApplyImpulse
instead.
Thank you! Aswell as thank you @Fenveer for your help, I’d prefer the non-deprecated option so I marked yours as solution!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.