Creating a circular hole in a GUI

Is making a hole in a UI possible without using ImageLabels? Like this:


(the white part would make the green circle transparent)

1 Like

Maybe UIStroke could be used here?

1.Create the frame
2.Make it fully transparent.
3.Add a UIStroke object to the frame
4.Set the Thickness to your likings.
optional: you can also play with the LineJoinMode [ a property of the UIStroke to recieve one of these:
image

Note:
As of now, the maximum number for Thickness is 25.
so if you want the frame to have higher thickness, you could just put another frame within that one.

5 Likes

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