local ReplicatedStorage = game.ReplicatedStorage
local frame = script.Parent:WaitForChild("Frame").ScrollingFrame
local number = ReplicatedStorage.DevProducts:GetChildren()
for i = 1, #number do
print(i)
local button = Instance.new("ImageButton")
button.Parent = frame
button.Name = i
local UICorner = Instance.new("UICorner")
UICorner.Parent = button
UICorner.CornerRadius.Offset = 32
end
UICorner.CornerRadius.Offset = 32
Whats wrong here. And how do I fix it?