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

Why are TextBoxes not showing in ScrollingFrame? [HELP]

Asked by
Shadrz 40
7 years ago

I am an experienced scripter, however there is something I can't figure out. So, I've been trying to figure out why does this happen. When I set up the GUI some of the Text boxes do not show, I have been brainstorming what is wrong with it, I can't figure it out. I am sure it's a problem with scaling, but I definitely could be wrong.

01script.Parent.GUI.ScriptGUI.Visible = true
02repeat wait() until script.Parent:FindFirstChild("GUI") ~= nil
03 
04local shopGUI = script.Parent.GUI.ScriptGUI
05 
06local frame1 = shopGUI.Scripts
07local frame2 = shopGUI["Scripts2"]
08 
09local tab1 = shopGUI.TabScripts
10local tab2 = shopGUI["TabScripts2"]
11 
12local frame = {frame1, frame2}
13local tab = {tab1, tab2}
14 
15local currentTab = frame1.Name
View all 68 lines...

Here's the link for what the GUI looks like in the explorer. v Explorer

Answer this question