local button = script.Parent --the button local Part = game.Workspace.Part2 button.ClickDetector.MouseClick:Connect(function(click) if click then Part:Clone() print("i was cloned")
end wait(4) Part.Position = Vector3.new(0,15,0) end)
local button = script.Parent --the button local Part = game.Workspace.Part2 button.ClickDetector.MouseClick:Connect(function(click) local copy = Part:Clone() print("i was cloned") wait(4) copy.Position = Vector3.new(0,15,0) end)