why does it print, but not change the text?
''' local screengui = game.StarterGui:FindFirstChild("ScreenGui")
local label = screengui:FindFirstChild("TextLabel")
game.Players.PlayerAdded:Connect(function(player)
local localplayerID = player.UserId
label.Text = "Hello, " .. player.Name .. "!"
task.wait(3)
print("neajf")
label.Text = "..."
while true do
label.Text = "Waiting."
wait(0.5)
label.Text = "Waiting.."
wait(0.5)
label.Text = "Waiting..."
end
end)
'''



** You are now Level 6! **

