[GUI Coding] I have an issue with a GUI/UI usage

Clearly the grey box needs to be on the answer, not the question. I am trying to move it downwards but its hecking difficult when all the textboxes and labels are not registered into the Frame…

for Type, Questions in ipairs(Children) do 
				local P = script.Question:Clone()
				P.Parent = gui.Frame
				P.Question.Text = Questions.Value
				local A = script.Answer:Clone()
				A.Parent = gui.Frame		
	end		

That is my code, but the clone and the parenting is like not showing on the frame. So I need help on it. Anyone?

I fixed the grey box thing, but I still need to know how to make it so that I can see the frame childs

To get the frames children you would do something like that:

local yourFrame = gui.Frame

for index, child in pairs(yourFrame:GetChildren()) do
    print(child.Name)
end

I found myself that the script did work but it worked on the PlayerGui not StarterGui