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?