Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Random Player Chooser [Help] + I need a clock?

Asked by 10 years ago

So I got this, but it seems to crash my ROBLOX Studio when I test it. I also need to figure out how to add a Timer Gui to it. I dragged my timer Gui into the script but it doesn't show up when a random players are chosen how would I add it?

01pos1 = 8, 0.59, 14.5
02pos2 = -15, 0.59, 14.5 -- The position that the random player will be moved to.
03WaitTime = 10 -- The time in-between each player getting picked.
04-- DO NOT EDIT ANYTHING BELOW!!! --
05-----------------------------------------------------------------------
06dft = {}
07 
08function GetPlayers()
09local c = game.Players:GetChildren()
10for i = 1, #c do
11table.insert(dft, c[i].Name)
12end
13end
14 
15function Randomize()
View all 30 lines...

Answer this question