game.Players.PlayerAdded:Connect(function(player)
local Gui = player.PlayerGui
local images = Gui:WaitForChild("FoundClothing").Clothingframe:FindFirstChild("Scroll"):GetChildren()
local valuelist = player:FindFirstChild("PlayerData"):FindFirstChild("SaveImage"):GetChildren()
for i=1,#images do
for x=1,#valuelist do
local image = images[i]
local value = valuelist[i]
if image.Name == value.Name then
print("It works! Yay")
end
end
end
end)