How to make an ImageButton visible for all players on a server

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!

that the ImageButtons selected by the player are copied and applied in SurfaceGui and are visible by all the players that are on that server

  1. What is the issue? Include screenshots / videos if possible!

eqwe

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

while wait() do
    for i,e in pairs(script.Parent.Frame:GetChildren()) do
		if e:IsA("ImageButton") then
			e:Clone().Parent = workspace.table1.eee.player1.Part1_a.ee.SurfaceGui
		end
    end
end

I think you would have to use a Remote Event, because anything from Client to Server requires a Remote Event for communication.