of     1   

Fearlessblocky202
#149847535Sunday, November 16, 2014 2:48 AM GMT

Would it be better to use in pairs or in ipairs for getting players and changing something in their PlayerGui?
128GB
#149848402Sunday, November 16, 2014 3:01 AM GMT

use a numeric for loop, pairs, ipairs, or next its up to you, in this case numeric would be fastest (Unnoticeable) but I used next for _, player in next, game.Players:GetPlayers() do if player:FindFirstChild("PlayerGui") then --stuff end end
JarodOfOrbiter
#149850140Sunday, November 16, 2014 3:29 AM GMT

ipairs is probably better for this, since the others do unnecessary things too, but idk.
Goulstem
#149850356Sunday, November 16, 2014 3:33 AM GMT

simple pairs bruh,

    of     1