Sorry, I misinterpreted the use of the Vector3 Table, I thought you were trying to randomly place parts in one/four of those positions, but I wasn’t reading carefully enough. I figured out a solution to it, though.
I modeled out where these positions would be using parts, and I see it models out to be a square shape. I was wondering, maybe you could have an invisible part that could act as the region in which parts would randomly be positioned in.
Here’s a photo showing what I mean
The white nodes represent the positions in the table, and the red part is the region.
Using this process, here’s the code that I came up with:
01 | local GrassIsCutted = false |
02 | local OriginalPiece = game.ServerStorage.OriginalPart |
04 | local region = game.Workspace:WaitForChild( "Region" ) |
05 | local size = region.Size |
07 | local function neg(number) |
08 | if math.random( 1 , 2 ) = = 1 then |
16 | function duplicatePiece() |
18 | math.randomseed(tick()) |
20 | local clonedPiece = OriginalPiece:Clone() |
21 | clonedPiece.Parent = game.Workspace |
23 | clonedPiece.CFrame = region.CFrame |
31 | clonedPiece.CFrame = clonedPiece.CFrame * CFrame.new(neg(math.random( 1 , x* 10000 )/ 10000 ), 0 , neg(math.random( 1 , z* 10000 )/ 10000 )) |
Here’s what the end result would look like
This code will work with any assigned region. Just change the 4th line to the location of the region.
Explanation 1
I’m only using the X and Z axes because Y is not affected. Since Y represents the height of the region, it is not altered or affected, just the back-forward and left-right movement of the part.
The reason why I’m dividing each size by 2 is because I’m varying the position of the part relative to the center of the region. This may sound confusing, so I drew a little diagram to show you what I mean.
Here’s the diagram
Explanation 2
In this section, I am taking the x/2 and z/2 values and multiplying it by 10000. The reason is because numbers can go up to the .0001 significant figure when divided by two, depending on the size. math.random functions wouldn’t work with decimals, so I changed these to a whole number by multiplying them by 10000 and afterwards, when a whole number is reached, divide it back by 10000 to get the exact decimal.
I used the neg() function to return the number to either negative or positive. Negative values either move the part left or backwards, and positive values move then right or forwards.
I really hope I answered your question and helped you through this process :)