How would I make a billboard gui go trought only one part ?
I have searched but found nothing !
Here a screenshot of the issue :

Thanks you for the reply and have a nice day !
1 Like
The problem is that the part is transparent, so your part is not blocking the gui.
You can change the color of the gui to be transparent.
gui = Instance.new("BillboardGui")
gui.Parent = part
gui.Size = UDim2.new(0,10,0,10)
gui.StudsOffset = Vector3.new(0,1.5,0)
text = Instance.new("TextLabel")
text.Parent = gui
text.Size = UDim2.new(1,0,1,0)
text.Text = "Hello World!"
text.TextColor3 = Color3.new(0,0,0)
text.BackgroundTransparency = 1
text.TextTransparency = 0
1 Like
The part is not transparent and making the GUI transparent would influence that much… I believe it is good to as well as disable set the boolean AlwaysOnTop as false
1 Like