Tycoon object selling pop up effect!

Hello! So I’m working on a tycoon and I was wondering how could I create an effect that pops up and shows the value of the object when the object is being sold.
I haven’t found anything yet on devforums maybe because I don’t know what to search for or none has made a post about it yet
here’s an image of it
image

and a game link where it is used

There are 2 ways to do it, the easiest way is to make a particle emmiter with texture, and then, emit it via
Particles:Emit()

Or, you can create attachment, and then billboard gui, attachments are parented to part and billboard gui is parented to atachment, after that, you make a tween to position calculated via: targetPos = Attachment.Position += Vector3.new(0, 3, 0)

1 Like