How do I make this popup so the whole server can see?

How can I make this popup so that the entire server can see, not just my client? I’ve looked up how to do this and it’s troubling as I’m new to scripting.

local module = {}

function module.load(target)
	_G.target = target
	local target = game.Players:WaitForChild(_G.target)
	script.ElChipPopup:Clone().Parent = target.PlayerGui
end
return module
function module.load(Plr)
    for i, v in pairs(game.Players:GetPlayers()) do
	    script.ElChipPopup:Clone().Parent = v.PlayerGui
    end
end

or fire all clients then do stuff

I wouldn’t recommend using _G as its a Global variable which means an exploiter can change it from the client as its a “Global” variable.

an exploiter can change any variable doesn’t matter if its _G or not

function module.loadAll()
	for _, player in ipairs(game.Players:GetPlayers()) do
		script.ElChipPopup:Clone().Parent = player.PlayerGui
	end
end

You would just need an additional module function which can called to make the popup appear for every client.