Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to clone a UI Into playergui with a normal script in serverscriptservice?

Asked by
hokyboy 270 Moderation Voter
4 years ago
1local function CloneDialog(plr)
2    local NewUI = script.PlayUI:Clone()
3    NewUI.Parent = plr.PlayerGui
4    NewUI.TextScript.Disabeld = false
5 
6end

How to clone a UI Into playergui with a normal script in serverscriptservice

1 answer

Log in to vote
1
Answered by
hokyboy 270 Moderation Voter
4 years ago
1while true do wait(1)
2for i, players in pairs(game.Players:GetChildren()) do
3    warn("Trying To Clone The Player Gui")
4    local NewUI = script.PlayUI:Clone()
5    NewUI.Parent = players.PlayerGui
6    NewUI.TextScript.Disabeld = false
7    end
8end
0
Fixed it hokyboy 270 — 4y
Ad

Answer this question