So, I tried creating a Loading screen and when i finish it, It says “Transparency is not a valid member of PlayerGui”. And i tried looking for an asnwer for it, And didnt found. Can any of you help me? (I’m also new to scripting so i probably messed something up.)
PlayerGui doesn’t have the property “Transparency” , so it won’t work for you, but if you want to change something inside the PlayerGui then its
`game.Players.LocalPlayer:WaitForChild(“PlayerGui”). --name of the thing you want to set tranparency to 0
1 Like
What are you trying to make visible exactly?
What I am guessing you are trying to do is set the topbar transparency of the player’s GUI. If you are trying to do that, I recommend reading this article. If you are just trying to set the transparency of an object, then you need to define the object that has a transparency property. Also, if changing the transparency of an object, then instead of using :Transparency(#), you have to use .transparency = # (# = Number).
1 Like
