[Galletas del Juego del Calamar] Cuenta regresiva en Roblox Studio
En este tutorial vamos a colocar una cuenta regresiva en Roblox Studio que nos avisará cuánto tiempo queda para dar las vueltas que debemos dar.
- Agregaremos dos variables:
- numCuentaRegresiva que almacenará el tiempo que hace falta para terminar el juego.
- numVueltasDar la cantidad de vueltas que se debe de dar.
- En StarterGui agregamos un ScreenGui y dentro un TextLabel y dentro un script que mostrara el tiempo que resta para dar todas las vueltas y las vueltas que restan por dar.
for i= game.Workspace.numCuentaRegresiva.Value, 0,-1 do if i=20 and i=11 then script.Parent.BackgroundColor3= Color3.new(0,1,0) end if i=10 and i=6 then script.Parent.BackgroundColor3= Color3.new(1,1,0) end if i=5 then script.Parent.BackgroundColor3= Color3.new(1,0,0) end game.Workspace.numCuentaRegresiva.Value=i local numVueltasRestan= game.Workspace.numVueltasDar.Value - game.Workspace.numVueltas.Value script.Parent.Text=tostring("Tiempo=".. i.." | Vueltas restan="..numVueltasRestan) wait(1) end
🎦 Crear el juego🕹️ Galletas del Juego del Calamar [en Roblox Studio]: https://www.youtube.com/watch?v=PTS8-TC4RGU&list=PLCTD_CpMeEKRBbHpxvputcR1ob05z1B7m&ab_channel=programadornovato
🎦 [Crear el juego🕹️ del calamar🦑] PUENTE DE CRISTAL: https://www.youtube.com/watch?v=jkKMVtf48lE&list=PLCTD_CpMeEKRK5dyAUj7IJwTNdSdCqD8d&ab_channel=programadornovato
🎦 [Crear el juego🕹️ del calamar🦑] LUZ VERDE LUZ ROJA: https://www.youtube.com/watch?v=nY7xCgj3zCk&list=PLCTD_CpMeEKQqnmwn61tIgry1ph4i2nUB&ab_channel=programadornovato
🎦 [Curso] Crear VideoJuegos con Roblox🤖🕹️: https://www.youtube.com/watch?v=W9F1ZHOQbJY&list=PLCTD_CpMeEKTsBiW-FaQLqJXnsTf4YUVM&ab_channel=programadornovato
🎦 [CURSO] de Scratch de 0 a 100 😺: https://www.youtube.com/watch?v=89v6iyKrtgg&list=PLCTD_CpMeEKRsxcdSxuUcqmEG7NlEbCLP
🎦 [CURSO] C++ DE 0 A HEROE 🦸: https://www.youtube.com/watch?v=APN8aCyPvww&list=PLCTD_CpMeEKTofxs7iottRxJ5YPM7BOcc&ab_channel=programadornovato
🎦 [Curso] Java Netbeans Completo☕: https://www.youtube.com/watch?v=97nO4-zdviA&list=PLCTD_CpMeEKTT-qEHGqZH3fkBgXH4GOTF&ab_channel=programadornovato
Anterior tutorial Siguiente tutorial