How can I replicate this touch bubble?

Debated if this would go scripting or art design, this is scripting related due to the sizing, the mouse position etc.

How would I replicate this touch bubble / click bubble

2 Likes

What do you mean by replicate? Can you expand on what you’re trying to achieve?

1 Like

look at his mouse, it makes a circular UI element on click. he wanna know how.

2 Likes

After connecting to a click function, you would probably add a frame with a UICorner with a CornerRadius of 1,0. (to create a circle) (also you would probably have to add a UI Aspect Ratio Constraint) Then you would tween the frame to be bigger and more transparent, until it’s deleted.

To make the effect stay in the button, you would probably set ClipsDescendant to true. (In the button)

1 Like

I have a game that uses a near-identical effect. I went ahead and pulled the code and made it into a simple model you can tweak to your liking.
clickeffect.rbxm (9.5 KB)

1 Like

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