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

Run Random Event, script activated or enabling part?

Asked by 4 years ago

How do I run/enable a random script or part?

Here is the randomizer script:

01folderChildren = game.Lighting.ScriptsNBricks:GetChildren()
02Current = game.Workspace.CurrentEvent
03local getCur = Current:GetChildren
04 
05local picked = math.random(#folderChildren )
06while true do
07wait(5)
08print(picked)
09picked.Parent = workspace.Current
10local script = if picked:IsA("Script") then end
11if script then
12script.Disabled = false
13end
14 
15wait(5)
16getCur:Destroy()
17end

Please Help.

1 answer

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

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:

1local randomNumber = math.random(1, 9)
2print(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:

1local object = math.random(1, #folderChildren) -- Randomizes a number between the first index of the table and his lenght.
2local picked = folderChildren[object] -- Gets the picked object --
Ad

Answer this question