saurus10
|
  |
| Joined: 30 Aug 2010 |
| Total Posts: 87 |
|
|
| 25 Jan 2014 12:06 PM |
So what I need is a timer GUI that counts down from 20 to 0 When that happens, select a random map, for example, it cycles through 3 maps. "Map1, Map2, Map3" Then when it's selected teleport ALL players to picked location where that map is and after, lets say 200 seconds all players are teleported back and a hint message says "You Lose!"
Bonus: I doubt any of you will do this, unless you are epic So i'm creating a game where you have to collect all the blocks. When you do, the timer stops, it says "You Win!" Then all the players who are still alive are teleported back to spawn, given 10 points and then loops back to the "lobby script" (Count down from 20 to 0) and resets
P.S: This sounds REALLY hard to do, i'm a very basic scripter and I've been looking everywhere for instructions how to do all this, even ROBLOX Wiki is sometimes unhelpful. Ive been learning "Learning Scripts for Beginners" and now I feel confident I too can become a great scripter
P.P.S: It sounds like I'm just free modelling a script from someone, if there's ANYWHERE you know that can teach me this, give me a link or a suggestion on where to go to learn this |
|
|
| Report Abuse |
|
|
|
| 25 Jan 2014 12:09 PM |
while true do end
#nerdsunited |
|
|
| Report Abuse |
|
|
saurus10
|
  |
| Joined: 30 Aug 2010 |
| Total Posts: 87 |
|
|
| 25 Jan 2014 12:21 PM |
I guess I was being a bit silly I know how to loop XD
|
|
|
| Report Abuse |
|
|
kubuto2
|
  |
| Joined: 16 Jul 2008 |
| Total Posts: 1275 |
|
|
| 25 Jan 2014 12:23 PM |
for i = 19, 0, -1 do --figure out what goes in here. end |
|
|
| Report Abuse |
|
|
saurus10
|
  |
| Joined: 30 Aug 2010 |
| Total Posts: 87 |
|
|
| 26 Jan 2014 11:14 AM |
@kubuto2 Im guessing thats a countdown timer, if i were to put that in a script in a textbox IN a GUI, would it show it counting down? |
|
|
| Report Abuse |
|
|
Owned8035
|
  |
| Joined: 07 Jun 2011 |
| Total Posts: 26 |
|
|
| 26 Jan 2014 11:18 AM |
| No, that only makes i lower by one every iteration over the loop. You'll need to make the script wait one second between each iteration, and then copy the value of i into a textlabel. As for your randomly selecting a map, look into math.random(). |
|
|
| Report Abuse |
|
|
saurus10
|
  |
| Joined: 30 Aug 2010 |
| Total Posts: 87 |
|
|
| 26 Jan 2014 12:46 PM |
| I got it, I found out how to do all this and how to reset it. I'm done on this post. On my other post i say what I need to do next |
|
|
| Report Abuse |
|
|