Its so I can make a random one catch on fire
Lets say that the model is the scripts parent:
local Model = script.Parent local RandomBrick = Model:GetChildren()[math.random(1, #Model:GetChildren())]
This uses math.random() to choose a random child from the scripts parent (the model).