Advertisement
Yondiux

TEXT LABEL 2

Jun 1st, 2021
1,811
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local player = game.Players.PlayerAdded
  2. local valor = game.Workspace.Tiempo.PantallaJugador
  3. local texto = script.Parent
  4. local playerr = script.Parent.Parent.Parent.Parent.Parent
  5. local jugadores = game.Workspace.Jugadores
  6.  
  7. texto.Text = "Iniciando en " .. valor.Value .. " segundos..."
  8.  
  9. valor:GetPropertyChangedSignal("Value"):Connect(function()
  10. texto.Text = "Iniciando en " .. valor.Value .. " segundos..."
  11. end)
  12.  
  13. while wait(1) do
  14. if jugadores.Value >= 1 then
  15. script.Parent.Parent.TextLabel.Visible = false
  16. script.Parent.Visible = true
  17. end
  18. end
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement