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

Why can't I access PlayerGui in players?

Asked by 9 years ago

My script is supposed to make things inside a GUI active so that players can see if they won/lost the game.

The giving of XP works, but for some reason, the game won't access PlayerGui (Is it even possible to access in the first place?)

Everything is named correctly

Can someone please help me? Here's the script:

01function EndGame()
02    local player = game.Players:getPlayers()
03    for i = 1, #player do
04        if player[i].TeamColor == BrickColor.new("Bright green") then
05            player[i].PlayerGui.EndGameGUI.Frame.Victory.Visible = true
06            player[i].Other.XP.Value = player[i].Other.XP.Value + 300
07        elseif player[i].TeamColor == BrickColor.new("Bright red") then
08            player[i].PlayerGui.EndGameGUI.Frame.Defeat.Visible = true
09            player[i].Other.XP.Value = player[i].Other.XP.Value + 150
10        end
11    end
12end
1
You never actually call the function. BinaryResolved 215 — 9y
0
The function occurs. I'm just posting a small section of the script. The function gives XP but does not do anything to the GUI in question CoolJohnnyboy 121 — 9y

1 answer

Log in to vote
1
Answered by
4Bros 550 Moderation Voter
9 years ago

If you have the FilteringEnabled property in the workspace set to true, then the server will not be able to access the player's PlayerGui. When this property is set to true, the playergui will not replicate to the server and only the client will have access to it. If you want to access it then you should either turn off FilteringEnabled (wouldn't recommend) or use remote events to communicate with the client and change their playerguis.

Example: Create a remote event in replicatedstorage

01--Server Script
02local event = game:GetService'ReplicatedStorage':WaitForChild'RemoteEvent'
03function EndGame()
04event:FireAllClients("end")
05end
06 
07 
08--Local Script
09local event = game:GetService'ReplicatedStorage':WaitForChild'RemoteEvent'
10repeat wait() until game.Players.LocalPlayer
11local player = game.Players.LocalPlayer
12 
13 
14event.OnClientEvent:connect(function(arg)
15    if arg == "end" then
View all 24 lines...
0
FilteringEnabled is not set to true CoolJohnnyboy 121 — 9y
0
Does the output give you any errors? 4Bros 550 — 9y
0
No CoolJohnnyboy 121 — 9y
0
Output does not provide me with anything on errors CoolJohnnyboy 121 — 9y
Ad

Answer this question