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

Changing a GUI in the PlayerGui Folder?

Asked by
Nickelz 37
7 years ago
Edited 7 years ago

I am trying to make a script that changes all players gui from the PlayerGui folder, I got a snippet of code out of another script but it is not working for me.

1players = game.Players:GetChildren()
2    for i=1, #players do
3        players.PlayerGui.InformationGui.maintext.Text = "Example"
4    end

1 answer

Log in to vote
0
Answered by
xAtom_ik 574 Moderation Voter
7 years ago
Edited 7 years ago

Hey!


The Issue

The basic issue is that players is an array, so of course it is not going to work. I don't usually use this kind of loop when doing this kind of thing, I like to use pairs.


Approach

I would approach it like this:

1for _,player in pairs(game.Players:GetChildren()) do
2    player.PlayerGui.InformationGui.maintext.Text = "Example"
3end

Or you could approach it like this (source):

1local plrs=game.Players:GetPlayers()
2for i=1,#plrs do
3    output=plrs[i].PlayerGui.InformationGui.maintext.Text = "Example"
4end

Thanks

Thanks for reading my answer! I hope it helped. ~NowUndoThatMistake

Ad

Answer this question