Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Object transparency showing not what its not supposed to?...

Asked by 3 years ago

I am working on guis, and a thing that is not working is a Frame that is transparent what i mean imagine you add two Frames one transparent and another one that is not. and you make the transparent one so it is full screen and my Question is you can see the Frame that is not transparent is it possible to show the transparent gui and still keep the other one but not show it?

1 answer

Log in to vote
0
Answered by 3 years ago

Sorry if this doesn't work, as I tried the best to understand what you mean...

You are trying to make one GUI component transparent, and the other GUI component entirely invisible. To do so, perhaps you have one frame in another, and if so, this is what you would put in a local script thats in the first frame (or a regular script if you are using surface/billboard GUI):

script.Parent.BackgroundTransparency = 1
script.Parent.Parent.BackgroundTransparency = 0.5

This should make the front frame transparent, and the back frame entirely invisible. This does work with any other GUI component other than ScreenGUI, SurfaceGUI, and BillboardGUI.

Ad

Answer this question