Why Cant My Parts Ever Move?
So Im Trying To Make A Maze Generator And At First I've Been Trying To Generate A Grid But When I Try And Duplicate the X Axis And Move It It Doesnt Move And I Did As A Test To Teleport The Duplicated Parts To 0,0,0 And Thats Not Working Either So What Is Going On Heres The Script btw
01 | BIG = { X = 100 , Y = 100 , Z = 5 } |
07 | for i = 1 ,(Chunks * 10 ) do |
08 | local ChunkSplit = T*(Chunks) |
10 | local Part = Instance.new( "Part" ) |
11 | Part.Position = Vector 3. new( 0 - ChunkSplit,BIG.Z, 0 ) |
12 | Part.Size = Vector 3. new(Chunks,Size,Size) |
15 | Part.Parent = game.Workspace |
17 | local Model = Instance.new( "Model" ) |
18 | Model.Parent = game.Workspace |
21 | game.Workspace:WaitForChild(i).Parent = Model |
30 | local XC = game.Workspace.X:GetChildren() |
31 | local X = game.Workspace.X |
35 | local Clone = X:Clone() |
36 | local CloneC = X:Clone():GetChildren() |
37 | Clone.Parent = game.Workspace |
39 | local ChunkSplit = T * Chunks |
42 | CloneC [ i ] .Position = Vector 3. new( 0 , 0 , 0 ) |
so uh I don't know what's wrong can anybody tell me what's happening or give me the fixed code please?