This is my problem. I made an script that makes the tiles disappear randomly but when I used the math.random(), I not working.
I put some parts that named Tile there are 350 Parts named Tile that Part needs to be destroy in random.
So the Parent of the Tile are Tiles which is model. The parent of the model is a Model named RandomDestoyedTiles. I put a script under the Model named RandomDestoyedTiles. I put this lines of the code.`
1 | local Model = script.Parent |
2 | local Tiles = Model.Tiles |
3 | local Tile = Tiles:GetChildren() |
4 | local Tilecopy = Tile [ math.random( 1 ,#Tile) ] |
Is this correct? I mean Do I have typed wrong code.
I have make my own lines to think what happening so i used math.random() and while true do. But why i not worked, can you tell me what happen , if worked it is only one Part destroyed.No errors at the output.Why?