of     1   

The_Basilisk
#159840104Friday, April 10, 2015 11:29 AM GMT

How would you perform a script connected to a GUI that spawns you with 1 of 30 random tools?
DevSp4c3
#159840301Friday, April 10, 2015 11:35 AM GMT

gears = game.StarterPack:GetChildren() function start() for i, v in pairs(game.Players:GetChildren()) do v:MoveTo(Vector3.new(put something here)) newgear = gears[math.random(1, #gears)] newgear.Parent = v.Backpack end end This script takes a random gear out of StarterPack. So, you're task is to connect it to the GUI. Cheers.
The_Basilisk
#159840322Friday, April 10, 2015 11:36 AM GMT

"GetChildren" is a frightening script
DevSp4c3
#159840352Friday, April 10, 2015 11:36 AM GMT

It's the basic stuff you asked, so you should edit the script to your wills c:. Cheers.
Gh0stist
#159841982Friday, April 10, 2015 12:23 PM GMT

Does this work for "local scripts" that are in the starter pack as well?
DevSp4c3
#159847025Friday, April 10, 2015 2:23 PM GMT

Solo servers does, I guess. But if you start multyplying (like everybody would get the script) the script, it'll or lag or crash, I don't know.

    of     1