local number = 20 script.Parent.Activated:Connect(function() local gui = script.Parent.Parent.ScrollingFrame.module:Clone() local frame = script.Parent.Parent.ScrollingFrame.module gui.Position = UDim2.new(0,frame.AbsolutePosition.X,0,frame.AbsolutePosition.Y - number); print(number) number = number + 20 gui.Parent = frame.Parent end)
title says it all, im basically trying to make a player list but with no slots.
You can use :Clone() or instance.new then move it down a bit, I already made a player list with some more complicated coding