How to do the title.
Im thinking something like this
function roundend()
local allplayers =game.Players.getchildren()
local gui = game.Lighting.guinamehere
[IDK What to put here]
end()
Thanks if you can help.
-Phonicz
function roundend()
local allplayers =game.Players:GetChildren()
local gui = game.Lighting.guinamehere --you shouldn't store in lighting
for i,v in pairs(allplayers)do
gui:clone().Parent=v.PlayerGui
end
end
roundend()