Advertisement
Yondiux

RELOJ

Jun 1st, 2021
1,812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local player = game.Players.LocalPlayer or game.Players.PlayerAdded:Wait()
  2. local valor = game.Workspace.Tiempo.PantallaMenu
  3. local texto = script.Parent
  4. local jugadores = game.Workspace.Jugadores
  5.  
  6. texto.Text = "" .. valor.Value .. " SEGUNDOS"
  7.  
  8. valor:GetPropertyChangedSignal("Value"):Connect(function()
  9. texto.Text = "" .. valor.Value .. " SEGUNDOS"
  10. end)
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement