Why doesn't my TextChanger change the text?
I got help from someone and he made code that's supposed to change the text of a TextLabel, but it's not change. Could anyone help?
01 | function playerNotification(changeText) |
02 | for _,v in pairs (game.Players:GetChildren()) do |
03 | local ScreenGUI = v.PlayerGui:FindFirstChild( "ScreenGui" ) |
05 | ScreenGUI.Frame.TextLabel.Text = changeText |
10 | function intermissionTimer() |
11 | if game.Players.NumPlayers > = 2 then |
12 | for countDown = 10 , 0 , - 1 do |
13 | playerNotification( "Intermission: " ..countDown) |