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