Answered by
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:
1 | for _,player in pairs (game.Players:GetChildren()) do |
2 | player.PlayerGui.InformationGui.maintext.Text = "Example" |
Or you could approach it like this (source):
1 | local plrs = game.Players:GetPlayers() |
3 | output = plrs [ i ] .PlayerGui.InformationGui.maintext.Text = "Example" |
Thanks
Thanks for reading my answer! I hope it helped.
~NowUndoThatMistake