GUI Cloning Issue

I have this in my client:

	game.Players.PlayerAdded:Connect(function(player)
		local x = script.Parent.Parent["Trade Entry"]:Clone();
		x.Name = player.Name;
		x.Text = player.Name;
		x.Parent = ui["New Theme"]["Menu Frames"].Trading.List	
	end)	

But for some reason it isn’t cloning. Any idea? [No errors]

Never mind, it has been fixed. It was because the textbutton cloned was invisible… going to cry.