for i,Frame in pairs(Player.Values.Inventory:GetChildren()) do
local FrameClone = script.Frame:Clone()
FrameClone.Parent = ScrollingFrame
FrameClone.Text = Frame.Name
end
Oh wait, I messed around for a bit and found that the white frame in the back can overlap the scrolling frame, causing the button to be hidden. Try setting the scrolling frame’s ZIndex to the highest of all of the frame.Parent’s children
Not sure why you would want to add a scrolling frame after the other frame is already there showing.
If there isn’t enough items to scroll it will look like normal with the scrolling frame included from the start.