Answered by
5 years ago Edited 5 years ago
I'm kind of confused by your question, I'm assuming your question is that all players will have the ScreenGui and when the button inside the ScreenGui is clicked it will destroy all ScreenGuis for all players in the game? If so, this is very simple to do with RemoteEvents.
First of all, put a RemoteEvent inside of ReplicatedStorage.
Second, place a Local Script inside of the button and put the following code inside of it:
1 | script.Parent.MouseButton 1 Click:Connect( function () |
3 | if player.leaderstats.Cash.Value > = 60 then |
4 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value - 60 |
5 | game.ReplicatedStorage.RemoteEvent:FireServer() |
7 | MediterraneanAvenue.Parent = game.Players.LocalPlayer.Backpack |
Next you will need to put a Server Script inside of ServerScriptService and then put the following code inside of it:
01 | local Players = game:GetService( "Players" ) |
03 | game.ReplicatedStorage.RemoteEvent.OnServerEvent:Connect( function () |
05 | for i,v in pairs (Players:GetChildren()) do |
06 | local PutGuiNameHere = v:FindFirstChild( "PlayerGui" ):WaitForChild( "PutGuiNameHere" ) |
07 | PutGuiNameHere:Destroy() |
Again, It was hard to understand what you were asking for and hopefully this is the answer you were looking for.
If this is not what you were asking for, just put a comment below and I'll try to help you.