How do I change the order of each frame?

What do you mean? There aren’t any frames until someone joins the server.

What happens when you try that; if any?

Ok, I made a silly mistake, this definitely works now. I’ve tested.

local templates = {}

local function createTemplate(text)
	local Clone = NewTemplate:Clone()
	Clone.Text = text
	
	table.insert(templates, Clone)
	if #templates > 0 then

		for i, template in templates do
			template.LayoutOrder = #templates - i
		end
	end

	Clone.Parent = ScrollingFrame
end

1 Like

Nothing, the order doesn’t change.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.