I can't get the script to check if all of the part's magnitude compared to another. Any help?
Asked by
4 years ago Edited 4 years ago
So, I have a building system, and I want to get it to not place in the same position of another. There are collision parts inside all of the models. This is the part I'm having a problem with. It is only doing it for the recent model added to the folder,
01 | for a, b in pairs (placedTiles:GetChildren()) do |
02 | print ( "Finding Touched" ) |
03 | if b:FindFirstChild( "Selection" ) and (b.Selection.Position - tile.Selection.Position).Magnitude < 0.001 then |
05 | tile.Selection.SelectionBox.Color 3 = Color 3. fromRGB( 255 , 0 , 0 ) |
06 | tile.Selection.SelectionBox.SurfaceColor 3 = Color 3. fromRGB( 255 , 0 , 0 ) |
07 | tile.SelectionBox.Color = Color 3. fromRGB( 255 , 0 , 0 ) |
08 | elseif b:FindFirstChild( "Selection" ) and (b.Selection.Position - tile.Selection.Position).Magnitude > 0.001 then |
10 | tile.Selection.SelectionBox.Color 3 = Color 3. fromRGB( 0 , 255 , 0 ) |
11 | tile.Selection.SelectionBox.SurfaceColor 3 = Color 3. fromRGB( 0 , 255 , 0 ) |
12 | tile.SelectionBox.Color = Color 3. fromRGB( 0 , 255 , 0 ) |
Any help would be grateful :D
Edit: It only checks for the most recent child added to the folder, as of printing the magnitude.
Edit 2: I tried it with tables and the same thing is happening.