What kind of function would let me pick a random brick from a model?
Well you would have to get a table of all the children in the model, then use math.random on the table to get the random part.
Example;
1 | AllDehParts = ModelOfParts:GetChildren() --Made a table of the parts |
2 |
3 | DatOnePart = (AllDehParts [ math.random( 1 ,#AllDehParts) ] ) |
4 |
5 | --Use math.random on the table to get the random part, the arguments are just saying choose from 1 out of the total number there is, I know it looks confusing but it's not when you get the just of it. |
Any questions I'll be happy to answer(:
-Goulstem
This script will get a random child from 'Model':
1 | local model = game.Workspace.Model |
2 | local ranPart = model:GetChildren() [ math.random( 1 ,#model:GetChildren()) ] |
Much simpler :P