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:
01 | function 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 |
12 | end |
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 |
02 | local event = game:GetService 'ReplicatedStorage' :WaitForChild 'RemoteEvent' |
03 | function EndGame() |
04 | event:FireAllClients( "end" ) |
05 | end |
06 |
07 |
08 | --Local Script |
09 | local event = game:GetService 'ReplicatedStorage' :WaitForChild 'RemoteEvent' |
10 | repeat wait() until game.Players.LocalPlayer |
11 | local player = game.Players.LocalPlayer |
12 |
13 |
14 | event.OnClientEvent:connect( function (arg) |
15 | if arg = = "end" then |