I'm a beginner/intermediate scripter that still has a lot to learn and I'm trying to make a script that is ment to make a Gui appear when a chosen handful of players can make it do what the if statement does. As you can see the big hole.. I don't know what to put in there to make it work.. I know some parts that it needs just not all. Could someone help?
HR = script.Parent.Parent.Parent.Parent if HR.Name == "SecretShadowLeague" then if msg == "Computer Load O1" then for i=1, 0, -0.1 do A.TextTransparency = i wait(0.1) end end end
you could put your GUI into a big frame, in which all elements have their Position/Size relative (ie not absolute positions/sizes) To make it invisible, re-size the main frame to (0,0,0,0)
myFrame.Size=UDim2.new(0,0,0,0)
To show it, just give it a proper size
myFrame.Size=UDim2.new(0.5,0,0.4,0)
Hope i helped !
Make sure that 'msg' is defined, from the block of code I don't see the definition.