How can i fix the bubble clipping through the wall? I need it to be displayed on top of other objects.
1 Like
Change:
local BubbleChatPart = Instance.new(“Part”)
to
local BubbleChatPart = Instance.new(“BillboardGui”)
This will create a new billboard GUI instead of a part, which will always face the camera and be displayed on top of other objects. You may have to adjust scaling options after this with BubbleChatPart.Size
.