How do I run/enable a random script or part?
Here is the randomizer script:
01 | folderChildren = game.Lighting.ScriptsNBricks:GetChildren() |
02 | Current = game.Workspace.CurrentEvent |
03 | local getCur = Current:GetChildren |
04 |
05 | local picked = math.random(#folderChildren ) |
06 | while true do |
07 | wait( 5 ) |
08 | print (picked) |
09 | picked.Parent = workspace.Current |
10 | local script = if picked:IsA( "Script" ) then end |
11 | if script then |
12 | script.Disabled = false |
13 | end |
14 |
15 | wait( 5 ) |
16 | getCur:Destroy() |
17 | end |
Please Help.
So you're trying to pick a random Instance, but you used math.random incorrectly.
math.random you have to say the 1st number you wan't to randomize for and th last number, see an example:
1 | local randomNumber = math.random( 1 , 9 ) |
2 | print (randomNumber) |
Here you just put the table lenght inside the math.random function. If you want to pick an random object from the table, do:
1 | local object = math.random( 1 , #folderChildren) -- Randomizes a number between the first index of the table and his lenght. |
2 | local picked = folderChildren [ object ] -- Gets the picked object -- |