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