Hello, why isn’t this working?
1 | local Part = game.Workpace.Part |
2 | local t = 5 |
3 |
4 | wait(t) |
5 | local Part 2 = Part:Clone() |
6 | Part 2. Position = Vector 3. new( 1 , 100 , 1 ) |
You need to define the clone's parent, or else it will not work.
Possible fix:
1 | local Part = workpace.Part |
2 | local t = 5 |
3 |
4 | wait(t) |
5 | local Part 2 = Part:Clone() |
6 | Part 2. Position = Vector 3. new( 1 , 100 , 1 ) |
7 | Part 2. Parent = workspace |