Answered by
5 years ago Edited 5 years ago
Hi! Unlike a clickdetector you can not detect who clicked a GUI, which is why people use local scripts for them.
So first, make a local script, then make this the code
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | local player = game.Players.LocalPlayer |
3 | local LobbyCopy = game.Lighting.LobbyGui:Clone() |
4 | LobbyCopy.Parent = player.PlayerGui |
Even though this is only for the client, it doesn't matter, as no matter what nobody else can see your GUIs.
If you really want, you could use a remote event to do this, for example, if you need to access the gui from a server script.
In that case, Make a remote event in ReplicatedStorage, Call it "RemoteEvent"
make a local script with this as the code
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | local remote = game.ReplicatedStorage.RemoteEvent |
Then make a server script with this code
1 | local remote = game.ReplicatedStorage.RemoteEvent |
2 | remote.OnServerEvent:Connect( function (player) |
3 | local LobbyCopy = game.Lighting.LobbyGui:Clone() |
4 | LobbyCopy.Parent = player.PlayerGui |