{{'epl'},{'epl sb'},2,{},function(pl,args) local x = game.ReplicatedStorage:WaitForChild("epl"):Clone() x = game:GetService('Players').LocalPlayer:WaitForChild('PlayerGui') end},
So what I am trying to do is move a GUI I made from replicated storage to everyones startergui
When I run this code in chat which is ":epl" it doesnt show up and it doesnt go to the startergui
Not sure if this requires a remote event or something but
Please help thanks
{{'epl'},{'epl sb'},2,{},function(pl,args) --you accidentally set the 'x' variable to playergui instead i made x's parent set to playergui local x = game.ReplicatedStorage:WaitForChild("epl"):Clone() x.Parent = game:GetService('Players').LocalPlayer:WaitForChild('PlayerGui') end},