I’ve made a script for a text label. What it’s supposed to do is collect the player’s name and put it on the text label. However, when I play the game, the name doesn’t appear.
for _, plr in pairs(players:GetPlayers()) do -- a "for" loop.
-- players:GetPlayers() returns a table with all the players in the game
-- "plr" is the current player the loop in on
-- code things here
end)